← All Analyses
EXNESSBTCUSD
Bullish

btc

Mr Trader
1mo ago
btc

// lipi script for custom RSI indicator

indicator("Custom RSI")

src = input.source(title="Source", defval=close)

length = input.int(title="RSI Length", defval=14)

overbought = input.int(title="Overbought Level", defval=70)

oversold = input.int(title="Oversold Level", defval=30)

rsiValue = talib.rsi(src, length)

plot(rsiValue)

plot(overbought)

plot(oversold)

// end of lipi code

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 GoCharting. Read more in the Terms of Use.

Comments (0)

Loading comments…