I want to add Weekly Bars built from Minute data as secondary bar series in my Strategy. I have the following code:
else if (State == State.Configure)
{[INDENT]AddDataSeries("ES 03-22", new BarsPeriod { BarsPeriodType = BarsPeriodType.Minute, Value = 10080 }, "Default 24 x 7", false);[/INDENT]
}
A custom trading hour template is not possible because it doesn't allow a session to be more than 24 hours.
Thanks in advance!

Comment