1) For a backtest we can assume the following:
a.] periodicity is 1-tick bars and COBC = true.
b] For a long signal Close(1 tick, bid series) must be >= Close(1 tick, last series)
2) For market replay we can assume the following:
a] 1-tick data and COBC = true
b] For a long signal GetCurrentBid() must be >= Close(1 tick, last series)
Comments:
--Rules 1b and 2b are necessary conditions.
--However, for a market replay the fills and the strategy looks great. For a backtest, many of the expected fills are missing and the strategy is a poor performer.
Question:
What exactly is going on with the different Level 1 data series in the sim engine? Does backtest aggregate ticks but market replay does not? I'd like to understand exactly what NT does here.
Thx,
Lou

Comment