Upon looking at this forum it was said that I should make it a DataSeries and expose it, so I did:
/// <summary>
/// </summary>
[Browsable(false)]
[XmlIgnore()]
public DataSeries signal
{
get { return Values[4]; }
}
However...when I do this my indicator stops drawing anything at all, and the strategy does nothing.
What's the best way to expose one particular variable and have a strategy be able to use logic on that for decision making?
Thanks for any advice

Comment