I've seen the BoolSeries sample indicator and strategy. My indicator DataSeries has the Update(); in properties as follows:
[Browsable(false)] [XmlIgnore()] public DataSeries Signal
{ get { Update();return _signal; } }
Since Update() cannot be used in strategies, I'm trying to find the best method for getting current values.
I want to "reacquire" the current value of the Plot or DataSeries from the indicator to reassign values in the Strategy.
ie,
if (_myIndi.Signal.ContainsValue(0) &&
Signal[0] == 1 &&
_myIndi.Values[7].ContainsValue(0))
{
limitOrderPrice = _myIndi.Values[7][0] + 0*TickSize;
Thanks,
Kirk

Comment