EMA 12/26 + EMA 12 crossover
“MACD 기반 매매”
The strategy
fast = ta.ema(close, 12) slow = ta.ema(close, 26) macd = fast - slow signal = ta.ema(macd, 9) longSig = ta.crossover(macd, signal) exitSig = ta.crossunder(macd, signal)
Fork into the builderedit it, rerun it, share your version
running the backtest…