Is there a way to make the secondary data series automatically be on the same time interval as the main chart? Perhaps something that calls and returns the current chart time period, that can be put into a variable. That variable could be used when the secondary data series is called. And how would I do that?
Here is how I am setting up the secondary data series. Symbol is what the user can change from the Indicator variables panel.
else if (State == State.Configure)
AddDataSeries(Symbol, Data.BarsPeriodType.Minute,1,Data.MarketDataType.L ast);
}
bigtee

Comment