Order open next candle
-
I have a problem with my EA. I use range to open order after seeking high and low in the same day. But when i run it in forward test, the order has open when second time hit the particular range. what should I do?
-
@miro1360 can u solve the problem?
-
@mario-c Miro doesn't come by here very often any more, worth a try though. If you put a shared link on here someone will have a look to see what's wrong.
-
@jstap https://fxdreema.com/shared/IMi8EwPQb If you run it, you will know
-
@mario-c I see you defined a B9 group. However, no origin for that gorup is specified. Is the the whole EA or just a part of it?
-
@mario-c I wouldn't use blue blocks above blue blocks, this may work but for me I have never found it does. I would use flags or modify variables in a separate tree to keep from working until all conditions are correct.
-
@l-andorrà this just part of it. my idea is order is open when range is 90 pips form high or low. and for define the high/low, i use resistance and support horizontal. if my logic is incorrect, can u give some advice?
-
@mario-c The logic is not necessarily wrong, but you are requiring distances to be EXACTLY 90 pips. That will not necessarily happen. A tick can move price from 89 to 91 pips distance. That the block will not be executed. I would use >= instead of == symbol.