For example I have an indicator that plots a vertical solid orange line on some bars. I don't have access to the indicator's ninjascript code.
I'd like to create another indicator that plots an upArrow every time there is a vertical solid orange line.
Is this possible?
I know I can draw an upArrow using this code:
Draw.ArrowUp(this, @"GreenArrowUp"+CurrentBar, false, 0, (Low[0] + (-2 * TickSize)) , Brushes.Lime);
Is there a condition that can be used to plot the UpArrow every time the chart has a vertical solid orange line?

Comment