I have a DataSeries named "tradeSignal" that I'm having trouble plotting/exposing.
double tempVar = tradeSignal[0]; Values[0].Set(tempVar);
Values[1] = tradeSignal;
The second does not. Exposing tradeSignal through the following code produces the same incorrect result as Values[1] = tradeSignal :
[Browsable(false)]
[XmlIgnore()]
public DataSeries TradeSignal
{
get { return tradeSignal; }
}
Thanks in advance.
-Nick

Comment