protected override void Initialize()
{
//
Add(PeriodType.Minute, 5);
}
without any further references to the 5 minute index my strategy compiles but stops working. Should it not just run as before unless I add in some if(BarsInProgress == 1) conditions?
Or do I need to change all my references for the primary series? I've tried nesting it all within a if(BarsInProgress == 0 ) condition but that doesn't help.
Thanks in advance.

Comment