If you decide to use High resolution or Tick replay, and you have intrabar logic you need to calculate, you can do so in one of the order events, such as OnOrderUpdate, or OnPositionUpdate to set/release values before the next OnBarUpdate call.
Using tick replay gives you the advantage of telling the strategy to run Calculate.OnEachTick and you could then take care of your entry logic, manual trailing stops, profit verifications, etc just like the strategy was running in real-time on each tick.

Comment