I am trying to use a multi-time strategy, but want to check the values in the chart.
Just as a test purpose, I am adding 2 and 5 min time in the initiaize section, and try to plot the SMA for the different time frames:
protected override void Initialize()
{
Add(PeriodType.Minute, 2);
Add(PeriodType.Minute, 5);
Add(SMA(5));
Add(SMA(BarsArray[1],5));
Add(SMA(BarsArray[2],5));
CalculateOnBarClose = true;
}
How can I see those values in my chart?
Thank you very much!

Comment