Why this is used in indicator?
[Browsable(false)]
[XmlIgnore()]
public double ExposedVariable
{
// We need to call the Update() method to ensure our exposed variable is in up-to-date.
get { Update(); return exposedVariable; }
}
/* If you happen to have an object that does not have an IDataSeries class that can be used, you
will need to manually ensure its values are kept up-to-date. This process will be done in the
"Property" region of the code. */
private double exposedVariable;
#endregion

So, all ...Series are automatically updated.
and true/false for BoolSeries variable will be checked only those cases?
I'm newbie with 2000 rows code first in my life
Comment