RSI 14 crossover
The strategy
r = ta.rsi(close, 14) longSig = ta.crossunder(r, 30) exitSig = ta.crossover(r, 55)
Fork into the builderedit it, rerun it, share your version
running the backtest…
r = ta.rsi(close, 14) longSig = ta.crossunder(r, 30) exitSig = ta.crossover(r, 55)