RSI 14

//@version=4
study(title=”RSI”)
myValue=rsi(close,14)
a=plot(50)
b=plot(myValue)
col=myValue>50?color.green:color.red
fill(a,b,color=col)

This entry was posted in Uncategorized. Bookmark the permalink.