How can I wait until 1 tick of the new bar has happened?
-
I am finding that often my EA will look at the previous plus 1 period rather than the previous period. I think it is because I am using "once per bar" but this is not forcing the EA to apply the subsequent conditions to the right periods. Any ideas please on how I can force the EA to wait at least 1 tick into the new bar before it applies the condtions?
-
A further note on this. One of the conditions that follows "once per bar" is IF candle ID1 low > candle ID 2 low yet the EA is actually looking at candle ID2 low > candle ID 3 low. I think this is an issue with how the "once per bar" works, not sure?
-
That depends on your current configuration. Where is that 'once per bar' block positioned? On top or at the bottom of the execution block tree?
-
Hi @l-andorrà - the block is at the top of the tree.
-
Then probably you should move it to the bottom. THat way it will still be executed once per bar but just at the exact moment your conditions are met and not at the open of a candle only.