// Plot 0 is the primary security (IAU)
Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Line, "Plot0"));
// Plot 1 is SPY
Add("SPY", PeriodType.Day, 1);
Add(new Plot(Color.FromKnownColor(KnownColor.Green), PlotStyle.Line, "Plot1"));
// These series are displayed each bar.
Plot0.Set(Closes[0][0]);
Plot1.Set(Closes[1][0]);
Any idea what would cause this?
Many thanks.

Comment