SMA 5/20 crossover
The strategy
fast = ta.sma(close, 5) slow = ta.sma(close, 20) longSig = ta.crossover(fast, slow) exitSig = ta.crossunder(fast, slow)
Fork into the builderedit it, rerun it, share your version
running the backtest…
fast = ta.sma(close, 5) slow = ta.sma(close, 20) longSig = ta.crossover(fast, slow) exitSig = ta.crossunder(fast, slow)