- Search Metals Mine
- Hotpotato replied May 21, 2015
I would if i could but it is just a small screenshot of my basket trading system, it is not a standalone indicator. I am sorry. But i know there is one like this somewhere, i'll try to find it.
Dashboard Trading
- Hotpotato replied May 21, 2015
Call it quits for today. Two left over baskets from yesterday that had so little movement that they did not hit TP or SL and 1 added basket from the asia+2. Did suffer some DD.
Kopratasa EA & BDM
- Hotpotato replied May 21, 2015
Depends on what GVC is planning. Don't know if he wants to implement it himself or not.
Dashboard Trading
- Hotpotato replied May 21, 2015
Look at the pretty greens, that doesn't happen to much. Looks like playing four on a row or bingo.
Dashboard Trading
- Hotpotato replied May 21, 2015
Lock on v6auto works. The day before yesterday and today made up for the really bad yesterday.
Dashboard Trading
- Hotpotato replied May 21, 2015
Woke up a bit early this morning so here is Direction v6auto (needs to be tested). - Stop after x profitbasket - Stop after x lossbaskets - 3 profit lock ins - On a per session reset of Hi, DD,lock,profit baskets, loss baskets etc. - New session ...
Dashboard Trading
- Hotpotato replied May 20, 2015
We need an equity lock and trail function. I think i will close now.
Dashboard Trading
- Hotpotato replied May 20, 2015
Always funny. I would have gladly have given him the 35 cents myself.

Dashboard Trading
- Hotpotato replied May 20, 2015
Try this function if you want to use the "stop after x profitable baskets". It will reset every session. It is not pretty programming but he, so isn't the rest.
bool inSession() { static int localday = 99; static bool s1active = false; static ...Dashboard Trading
- Hotpotato replied May 20, 2015
You are not trading realistically. For 0.01 lot my margin requirements are $ 150 at the moment. So if you want to trade 0.2 lots it will be 3000 and that is not even the max. (worst case 28 * 4 * ~$ 40 (0.2 lot) = $ 2240 for every $50 profit ?). You ...
Dashboard Trading
- Hotpotato replied May 20, 2015
Different for everybody These are start LO sessions. Haven't been positive yet (the highest on top is old). Default settings.
Dashboard Trading
- Hotpotato replied May 20, 2015
Try this bool inSession() { static int localday = 99; static bool s1active = false; static bool s2active = false; static bool s3active = false; if ((localday != TimeDayOfWeek(TimeLocal()) && s1active == false && s2active == false && s3active == ...
Dashboard Trading
- Hotpotato replied May 20, 2015
StrToTime() will just return seconds since 1.1.1970 has nothing to do with GMT. So the original routine worked perfect as long as you know what your local session times are. If you do not...... But i didn't work for passed midnight sessions.
Dashboard Trading
- Hotpotato replied May 20, 2015
Won't work Session1 from 09:00 to 12:00 (same day) Time local = 10:01 if (UseSession1 && 10 >= 09 && 01 >= 00 && 10 <= 12 && 01 <= 00) The minutes are killing the session. &&TimeMinute(TimeLocal())<=TimeMinute(s1end)) { This only happens one minute ...
Dashboard Trading
- Hotpotato replied May 20, 2015
That is still the code that doesn't work. Look at my example.
Dashboard Trading
- Hotpotato replied May 19, 2015
It is not as easy as it looks. I will write a new function tomorrow, not now anymore. Unless someone else comes up with one....
Dashboard Trading
- Hotpotato replied May 19, 2015
No shift or GMT offset needed. Every trader should know at what time a session starts. I wake up at 8 in the morning to enter my trades because when my clock (and pc) says it is 9 o'clock LO opens. My brokers is one hour behind me so his clock (and ...
Dashboard Trading
- Hotpotato replied May 19, 2015
If you would have used the old function with s1end = StrToTime(sess1end); s1start = StrToTime(sess1start); if (s1end < s1start) s1end += 24*60*60;
Dashboard Trading
- Hotpotato replied May 19, 2015
if (UseSession1 && TimeHour(TimeLocal()) >= TimeHour(s1start) && TimeMinute(TimeLocal())>=TimeMinute (s1start) && TimeHour(TimeLocal()) <= TimeHour(s1end)&&TimeMinute(TimeLoc al())<=TimeMinute(s1end)) { Won't work Session1 from 22:00 to 02:00 Time ...
Dashboard Trading