//@version=5 strategy("Intraday Buy/Sell with Target & SL", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=100) // INPUTS rsiLength = input(14, "RSI Length") rsiOverbought = input(70, "Overbought") rsiOversold = input(30, "Oversold") maLength = input(20, "Moving Average Length") targetPercent = input(0.5, "Target %") /...