i want to plot horizontal lines at lows of the candle if the condition is true.
Condition - If RSI > 100 and ATR > 5
i want to plot horizontal lines at lows of the candle if the condition is true.
Condition - If RSI > 100 and ATR > 5
Hi Manjunath,
U can use “ValueWhen” Function to Plot Horizontal lines at “L” of Certain Conditions…
Example:-
Line = RSI(14) > 60 AND ATR(5) >5;
Plot(ValueWhen(Line,L),"",colorGreen);
Thanks Choks. You have not just answered but taught me as well. Appreciate.