The pertinent portions of the indicator code is shown below. The indicator should return a true or false value for the boolseries weakBuy, which it does in the output window.
#region Variables
private BoolSeries weakBuy;
#endregion
protected override void Initialize()
{
weakBuy = new BoolSeries(this);
}
In the onBarUpdate section I "set" this boolSeries to either true or false depending on different conditions
[Browsable(false)]
[XmlIgnore()]
public BoolSeries WeakBuy
{
get
{
Update();
return weakBuy;
}
}
Thanks!
GT

Comment