TradingView
RoryHighside
25 Th10 2017 08:03

RSI / STOCH RSI OVERLAY 

Bitcoin / U.S. dollarBitstamp

Mô tả

RSI with Stochastic RSI overlayed
Bình luận
tanatethai
what that on green line sir?
Aporio
I need your help. I want to plot all in one the cci+rsi indicator.
Thank You
Study (title = "CCI + RSI", shorttitle = "CCI + RSI ", format = format.price, precision = 2)

// CCI
length = input (20, minval = 1)
src = input (close, title =" Source ")
ma = sma (src, length)
cci = (src - ma) / (0.015 * dev (src, length))
plot (cci, color = color.olive)
band1 = hline (100, color = color.gray, linestyle = hline.style_dashed)
band0 = hline (-100, color = color.gray, linestyle = hline.style_dashed)
fill (band1, band0, color = color.
// FIN CCI

// RSI
srcRSI = cerrar, lenRSI = input (14, minval = 1, title = "Length")
up = rma (max (change (srcRSI), 0), lenRSI)
down = rma (-min ( cambio (srcRSI), 0), lenRSI)
rsi = down == 0? 100: arriba == 0? 0: 100 - (100 / (1 + arriba / abajo))
gráfico (rsi, color = color.purple)
bandRSI1 = hline (70)
bandRSI0 = hline (30)
fill (bandRSI1, bandRSI0, color = color.purple, transp = 90)
kalyanramy
Thank you very much for the script. It is very useful.
Is there a way we can apply this for buying and selling through tradingview for gunbot?
chartpulse
thanks for the great indicator.
andir80
thank you very much for this one
vasuchee
Good
myhashtrade
please add alerts setting for auto buy sell
Johnny66
BIG THANKS! Really useful.
Thêm nữa