//@version=5 indicator("Multi-Indicator Strategy", overlay=true) // Parameter RSI rsiPeriod = input(14, title="RSI Period") overboughtLevel = input(70, title="Overbought Level") oversoldLevel = input(30, title="Oversold Level") rsiValue = ta.rsi(close, rsiPeriod) // Parameter Moving Average maLength = input(50, title="Moving Average Length") ma = ta.sma(close,...