20813

Multi Timeframe RSI

Improved Version of with lines on 30 and 70 (both changeable).
开源脚本

本着真正的TradingView精神,该脚本的作者将其开源发布,以便交易者可以理解和验证它。为作者喝彩!您可以免费使用它,但在出版物中重复使用此代码受网站规则的约束。 您可以收藏它以在图表上使用。

免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。

想在图表上使用此脚本?
study("Multi Timeframe RSI", shorttitle="MTF_RSI")
len = input(14, title="Length", type=integer)
src = input(close, title="Source", type=source)
line1 = input(70, title="Line 1", type=integer, minval=0, maxval=100)
line2 = input(30, title="Line 2", type=integer, minval=0, maxval=100)
show5m = input(true, title="show 5m", type=bool)
show15m = input(true, title="show 15m", type=bool)
show30m = input(true, title="show 30m", type=bool)
show1h = input(true, title="show 1h", type=bool)
show2h = input(true, title="show 2h", type=bool)
show4h = input(true, title="show 4h", type=bool)
show1D = input(true, title="show 1D", type=bool)

rsiCurrent = rsi(src,len)
rsi5m = security(ticker,"5",rsi(src,len))
rsi15m = security(ticker,"15",rsi(src,len))
rsi30m = security(ticker,"30",rsi(src,len))
rsi1h = security(ticker,"60",rsi(src,len))
rsi2h = security(ticker,"120",rsi(src,len))
rsi4h = security(ticker,"240",rsi(src,len))
rsi1D = security(ticker,"D",rsi(src,len))

plot(rsiCurrent, color=red, title="RSI current")

plot(show5m ? rsi5m : na, color=interval < 5 and not isdaily and not isweekly and not ismonthly  ? #aaaaaa : na, title="RSI 5m")
plot(show15m ? rsi15m : na, color=interval < 15 and not isdaily and not isweekly and not ismonthly  ? #999999 : na, title="RSI 15m")
plot(show30m ? rsi30m : na, color=interval < 30 and not isdaily and not isweekly and not ismonthly  ? #888888 : na, title="RSI 30m")
plot(show1h ? rsi1h : na, color=interval < 60 and not isdaily and not isweekly and not ismonthly  ? #777777 : na, title="RSI 1h")
plot(show2h ? rsi2h : na, color=interval < 120 and not isdaily and not isweekly and not ismonthly  ? #666666 : na, title="RSI 2h")
plot(show4h ? rsi4h : na, color=interval < 240 and not isdaily and not isweekly and not ismonthly ? #555555 : na, title="RSI 4h")
plot(show1D ? rsi1D : na, color=not isdaily and not isweekly and not ismonthly ? #444444 : na, title="RSI 1D")
plot(line1, color=gray,title="Line 1")
plot(line2, color=gray,title="Line 2")