Shared strategy · 2026-08-13

EMA 9/21 crossover

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