' - this is then 'set' in on bar update ( Target = target
obviously the calculation is done before this, and I have used the following under properties:[Browsable(false)] //***
[XmlIgnore()]
public double Target
{
// We need to call the Update() method to ensure our exposed variable is up-to-date.
get { Update(); return target; }
}
I can read this variable in other indicators, draw it on screen etc - but I can't access the value for a strategy using the strategy builder, I think it's because it is not a data series. Does anybody have any ideas please - all I want to do is reference the value to set a target.
Ben.

Comment