Quick Question: How to get that the three closes on condition (crsi > 95) into three different floating point variables? In other words, how to get the three prices on condition (crsi > 95)?
@mansiinator, last_crsi_close(_1|_2) is already series variable. And hline doesn't accept "series' only "float" which is constant float value. But plot+trackprice - does accept series.
How to get that close on condition (crsi > 95) into a floating point variable, say ‘last_crsi_close_price’? In other words, how to get the price on condition (crsi > 95)? Once that close is in a floating point variable, the following could be used
Comments
hline(last_crsi_close_price, title='OB_Resistance', color=red, linestyle=dotted, linewidth=2)
plot(max(max(last_crsi_close, last_crsi_close_2), last_crsi_close_3), style=cross, trackprice=true, linewidth=3, offset=-9000)
plot(close, color=#ffffffff)