I've got a NinjaTrader indicator which generates a StringSeries and I'd like to retrieve this String info from the Market Analyser window.
I've tried to declare the StringSeries like a plot
[Browsable(false)]
[XmlIgnore()]
public StringSeries MyComplexStringForMA
{
get
{
return StringWithinCode;
}
}
Is there a way to achieve that ?
Or is the Market Analyser doomed to get only DataSeries (double) info ?
I need to say that the String is complex. So I can't use a number to correspond to a string.
Thank you in advance for your help

Comment