Here is the the logic I have used (going back to NT 7):
if (longSignal)
{
Draw.ArrowUp(this, signalBar.ToString()+SIGNAL, true, barsAgo, Low[barsAgo], arrowUpColor);
}
else if (shortSignal)
{
Draw.ArrowDown(this, signalBar.ToString()+SIGNAL, true, barsAgo, High[barsAgo], arrowDownColor);
}
else
{
RemoveDrawObject(signalBar.ToString()+SIGNAL);
}
This code used to work. Now it behaves as if NT 8 has split the Draw.Arrow[Up|Dow] into two tools.
What has changed?
Any other observations that may have caused this new warning?
Thanks,
Gary

Comment