I've been having some issues with this in Beta 5 and was wondering if its just me being an idiot:
Initialize
Add(new Plot());
OnBarUpdate
Values[0].Set(0);
if(Close[0] < SMA(75)[0])
PlotColors[0][0] = Color.Green;
The plot should be coloured green at anypoint where the close was < SMA(75). This doesnt seem to be the case?

Comment