I have variable iSeries Series<double> that is updated on bar update
I also have a variable double aValue that is also calculated on bar update
In my Properties section I have
[Browsable(false)]
[XmlIgnore()]
public Series<double> PublicSeries
{
get { return iSeries; }
}
This works and I can get this value from another indicator that contains this indicator
however When I do the following:
[Browsable(false)]
[XmlIgnore()]
public double PublicValue
{
get { return aValue; }
}
I don't get any value in the indicator that contains this indicator. But I have verified that the indicator that is doing the calculations is producing a double value.

Comment