[Browsable(false)]
[XmlIgnore()]
public DataSeries HIST
{
get { Update(); return Values[2]; }
}
DataSeries HistValues = IndName(eValue).HIST;
DataSeries HistValues = Indicator(eName.eValue).HIST;
The enum is public in the original indicator file but outside the namespace NinjaTrader.Indicator as I thought that would make it available to all.
How do I use my indicator?

Comment