in back testing. The request usually relates to how NT implements "look inside the bar" or bar "magnifier" capability which are methods used to implement the feature in other trading platforms.
If I'm reading this code example correctly then this approach only implements open of next bar market order fill emulation. Given that the open of the large bar and the open of the smaller bar are always the same, then this method does not really solve any issue (even for market orders).
The requirement and reason for "Look Inside the bar" backtesting, when using managed intra bar order methods (limit and stop market, stop limit) that are in force for the period of the large bar. The issue is not fill price (although that is important) its really to ascertain the order in which intra bar orders are hit, in the case where both stops and targets are active. BTW LIB also vital if trailing stop with percent give back is used too, as just using the OHLC on large bars will be overly optimistic results.
How can NT implement, with managed orders (limit and stop) with Time to Live the same as the large bar, but use a lower time-frame bars to see if they are hit in back testing?

Comment