Yaser Rahmati | یاسر رحمتی
Last updated 4 months ago
Create common indicators like RSI and MACD.
//@version=5 indicator("RSI Example", overlay=false) rsi = ta.rsi(close, 14) plot(rsi, title="RSI", color=color.orange)
Overlays are plotted on the price chart, while standalone indicators are plotted in separate panes.