I have been replaying data with a strategy I'm developing and have been able to use it on any of the replay data I have. Recently, I added a 10 minute PeriodType to the strategy and run some oscillators using that 10 minute object. Since making this change, the only market replay data that I can use is the data recorded with the strategy running that has the 10 minute period.
If I try to use any other days of data preceding Oct 29, the strategy does not run.
Is this expected behavior?
I have tried commenting out the 10-minute period Add statement and this line:
if (CurrentBars[0] <= BarsRequired || CurrentBars[1] <= BarsRequired || CurrentBars[2] <= BarsRequired)
return;
but no help.
Thoughts?

Comment