It needs a setup and then it waits for breakout.
Problem is that NT handles historical bars as live bars: so it detects a setup that happened BEFORE live time when I start the strategy (since it processes all historical bars too) and enters on the next available live bar.
It is not syncing, it is just evaluating a breakout condition of
if (close[0] is > setupPriceLevel + 10 * TickSize)
which will be true after a historical setup as well.
I hope it's understandable.

Comment