else if (State == State.Configure)
{
if (Bars.BarsData.DaysBack < 10)
AddDataSeries(null, new BarsPeriod { BarsPeriodType = BarsPeriodType.Minute, Value = 1440 }, 10, null, false);
else
AddDataSeries(BarsPeriodType.Minute, 1440);
}
however, if I load 60 days on the 5 minute chart, then I want to follow the number of days from the 5m chart,
so I need to get the value of the Days to Load in order to know which AddDataSeries to add.
Thanks in advance!

Comment