Communauté · Alerts
RSI overbought + bearish candle
Fires when RSI > 70 and the bar closes below its open.
@maeve15619MITPublié le 2026-04-25
rsi-overbought-alert.spec
let trigger = rsi(close, 14) > 70 and close < opennotify(when: trigger, channel: "email")output trigger