I have default chart:
chart (default) timeframe: 10min // always smaller timeframe compared to superior timeframe
superior timeframe: 40min // custom parameter I can change
So based on these I have some below operations
1) when I access this.Currentbar will that be defaulttime frame value or superior timeframe value
2) base.High[1] ==> will this be default time frame or superior timeframe
3) do I need to
AddDataSeries(BarsPeriod.BarsPeriodType, 40); // 40min
AddDataSeries(BarsPeriod.BarsPeriodType, 10); // 10min
4) do I need to add
AddPlot(new Stroke(Brushes.Green, DashStyleHelper.Solid, 5), PlotStyle.TriangleUp, "EnterLong");
AddPlot(new Stroke(Brushes.Purple, DashStyleHelper.Solid, 5), PlotStyle.TriangleUp, "SuperiorEnterLong");
My final goal is to have single chart with 2 timeframes on it. I could do it by adding indicator twice on chart. But I don't to go that route.
I have some code, which I cannot share, what is the best way to walk through?

Comment