Looks like this:
first... a snippet from OnStateChange:
case State.SetDefaults:
Name = "AAInd0905";
PrintTo = PrintTo.OutputTab1;
Calculate = Calculate.OnBarClose;
IsOverlay = true;
AddPlot(Brushes.Goldenrod,"myFast");
AddPlot(Brushes.SeaGreen,"mySlow");
AddPlot(Brushes.Blue,"myTrend");
break;
Values[0][0] = smaFast[0];
Values[1][0] = smaSlow[0];
Values[2][0] = smaTrend[0];
Like this:
Got me stumped why not. Any help appreciated...

Comment