//@version=5 strategy("MNQ EMA Strategy", overlay=true) // User Inputs emaShortLength = input.int(50, "Short EMA Length") emaLongLength = input.int(200, "Long EMA Length") stopLossPerc = input.float(1.0, "Stop Loss (%)") // 1% stop loss takeProfitPerc = input.float(2.0, "Take Profit (%)") // 2% take profit // Calculate EMAs emaShort = ta.ema(close,...