swetswet

RSI_3graf

swetswet 已更新   
RSI index/. 3 Timeframe.
评论:
Three graphs in one window. three RSI show together are better than one.

开源脚本

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

免责声明

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

想在图表上使用此脚本?
//
// @SwetSwet
//
study(title="RSI_3graf ", shorttitle="RSI_3g_SS")
source = close
h0 = hline(70, title="color70")
h1 = hline(30, title="color30")
h50 = hline(50, title="color50")
fill(h0, h50, color= green)
fill(h1, h50, color= red)

lenRSI1 = input(24, minval=1)
rsi1 = rsi(source, lenRSI1)
plot(rsi1, color=green, linewidth=2, title="Time1")

lenRSI2 = input(14, minval=1)
rsi2 = rsi(source, lenRSI2)
plot(rsi2, color=blue, linewidth=2, title="Time2")


lenRSI3 = input(9, minval=1)
rsi3 = rsi(source, lenRSI3)
plot(rsi3, color=red, linewidth=2 , title="Time3")