Condition Check
-
how to make this condition? ... after 2 loses consecutive in condition A .. use condition B until win then back to condition A any ideas?
-
Maybe you can use formula and write to variable. Like
Trade lost - formula write to variable value 1
Trade los again - formula writer variable value 2when variable equals 2 use condition B
-
@varso thanks for reply.... do you know any specific block for "trade lost"? thanks in advance..
-
Because I don't like the idea of working with variables to store such trading information (because if you close the EA, that information would be lost), I always prefer to find a way to check the actual trading data before doing something. So I would ask myself - can I get information from the trades that can tell me whether the condition A or B was repeated twice?
For example, you can set different Group numbers for the trades in conditions A and B. Those Group numbers are somehow linked to the magic numbers of the trades. But I don't know, maybe in this way you could make something that looks more complicated.
-
@jesse22 Use the [Check Consecutive Losses] block, then follow it with the [Turn OFF blocks] and [Turn ON blocks] to turn on and off the condition blocks you want.