OPEN-SOURCE SCRIPT

RSI مبسط

38
//version=5
indicator("RSI مبسط", overlay=false)

// حساب RSI
rsiValue = ta.rsi(close, 14)

// رسم خط RSI
plot(rsiValue)

// رسم المستويات
plot(95, "Level 95")
plot(78.6, "Level 78.6")
plot(61.8, "Level 61.8")
plot(38.2, "Level 38.2")
plot(21.4, "Level 21.4")
plot(5, "Level 5")

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.