I am trying to understand when it is necessary to call the Update() Method for Properties being exposes from an Indicator.
I have an indicator that exposes a List<Objects>. The List is populated from logic within the same indicator. I expose the Object with a simple getter :
[Browsable(false)]
[XmlIgnore]
public List<MWBSTRedWavePattern> L_RedWavePatterns
{
get { return RedWavePatterns; }
}
Thanks,

Comment