What is the appropriate way to add the data series for the day and week bars.
I have successfully added the 15 minute, 30 minute, and 2 hour bars using the following format in State == State.Configure:
AddDataSeries(null, BarsPeriodType.Minute, 15);
AddDataSeries(null, BarsPeriodType.Minute, 30);
AddDataSeries(null, BarsPeriodType.Minute, 120);
But when I try to add the day and week bars using the same format:
AddDataSeries(null, BarsPeriodType.Day, 1);
AddDataSeries(null, BarsPeriodType.Week,1);
It doesn't load anything and actually prevents the rest of my bars from loading.
Thank you for your help.

Comment