Horizontal lines failing to plot
How can I draw a horizontal line at the price level when my condition is triggered ? (version#4) plotshape(crossUp_red ? rvi : na, title="Up Arrow", style=shape.arrowup, location=location.abovebar, color=#109c3f, size=size.small, text="crossUp_red") // plots arrow However I’m having trouble plotting a line at the price where ‘crossUp_red’ is triggered. trigger_price = valuewhen(crossUp_red, close, 0) plot(trigger_price, title="line_crossUp_red", color=color.green,… Read More Horizontal lines failing to plot