the primary chart is a daily chart with say 500 days of data, while the secondary data-series is of one minute granularity.
now currently the issue is the secondary data also loads 500 days of data which takes a lot of time when connected. now for the secondary series say 30 days of data is sufficient for my indicator. so can i have a method from where i can define the number of days to load.
like currently i am using
protected override void Initialize()
{
Add(PeriodType.Minute,1);
Overlay = true;
}
{
Add(PeriodType.Minute,1, 30);
Overlay = true;
}
thanks in advance.

Comment