protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
Stroke my_stroke = new Stroke( new Brushes.Black), DashStyleHelper.Solid, 1 );
AddPlot( my_stroke, PlotStyle.Line, "SomePlot");
}
Is the way to see changes just after compile and reload NinjaScript on chart by F5?
P.S. In NT7 I did any plots changes in OnStartUp() method - it takes effect immediately - It was very fast and convenient.
P.P.S. I use very "heavy" indicator on 10 charts simultaneously. And it is awful work to remove indicator from all charts and to put it again.

Comment