I am working on custom indicator. Please find below code extract regarding plots:
In Initialize():
Add(new Plot(Color.LightGray, PlotStyle.Dot, "SC_0_long")); // StochCross Add(new Plot(Color.LightGray, PlotStyle.Dot, "K_0_long")); // Korekta prosta Add(new Plot(Color.LightGray, PlotStyle.Dot, "KF_0_long")); // Korekta prosta Fibo Add(new Plot(Color.LightGray, PlotStyle.Dot, "V_0_long")); // Value
[Browsable(false)]
[XmlIgnore()]
public DataSeries SC_0_long
{
get { return Values[0]; }
}
[Browsable(false)]
[XmlIgnore()]
public DataSeries K_0_long
{
get { return Values[1]; }
}
[Browsable(false)]
[XmlIgnore()]
public DataSeries KF_0_long
{
get { return Values[2]; }
}
[Browsable(false)]
[XmlIgnore()]
public DataSeries V_0_long
{
get { return Values[3]; }
}
Please find attached a screenshot where you will see that there in no plots I have defined.
This is a screenshot from the current version of the indicator but the plots I see here are as they would be from the previous version. I do not understand why?
Is there any reset option for indicators in NT?
Please support.

Comment