Shared strategy · 2026-08-13

EMA 12/26 crossover

The strategy
fast = ta.ema(close, 12)
slow = ta.ema(close, 26)
longSig = ta.crossover(fast, slow)
exitSig = ta.crossunder(fast, slow)
Fork into the builderedit it, rerun it, share your version
running the backtest…