I'm here to help you create custom TradingView indicators using PineScript. Just describe what you need!
How can I help you create your trading indicator today?
I need a simple RSI indicator with overbought and oversold signals
Here's a PineScript code for RSI with signals:
//@version=5 indicator("RSI with Signals") rsi = ta.rsi(close, 14) plot(rsi, "RSI", color=color.purple) hline(70, "Overbought") hline(30, "Oversold")