RSI Shown as Candlesticks


Category:
0
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
Posted by (Questions: 1, Answers: 0)
Asked on September 12, 2020 12:55 pm
162 views
0
Private answer

On Thinkorswim, chart types are handled completely through chart settings. There is no direct way to create candle sticks on Thinkorswim. There are some ways you can mash something together and sort of get there. But it's ugly and very complicated.

Marked as spam
Posted by (Questions: 37, Answers: 4087)
Answered on September 12, 2020 2:37 pm