♥ 0 |
Hi Pete, I found a tradingview script where someone converted standard RSI line into candlesticks. I have been searching to find out if this is possible on Thinkscript. Heres the pinescript study(“RSI CANDLESTICKS”) len=input(14,title=”RSI LENGTH”) c=rsi(close,len) o=rsi(open,len) h=rsi(high,len) l=rsi(low,len) plotcandle(o,h,l,c, color = o < c ? green : red, wickcolor=black) hline(70, title=’Upper Band’, color=gray, linestyle=dotted, linewidth=2) hline(30, title=’Lower Band’, color=gray, linestyle=dotted, linewidth=2)
let me know what you think, Best Regards, Jon
Marked as spam
|
Please log in to post questions.