Noon Barbari
Registrieren

Zurück zur Strategie-Bibliothek

Mean ReversionNur Long15m1h4h

RSI mean reversion strategy

Buy when the market is overextended below the mean, ride it back to fair value.

These

Buy when the market is overextended below the mean, ride it back to fair value.

Passt zu Mean Reversion-Setups — funktioniert am besten, wenn das Marktverhalten zur These passt, und versagt, wenn nicht. Vor echtem Kapitaleinsatz mit dem Walk-Forward-Modus des Backtesters kombinieren.

Choppy zig-zag equity curve with frequent small wins and the occasional outlier loss when a sharp downtrend leaves RSI pinned in the oversold zone. Fits range-bound chop; struggles in strong directional regimes.

YAML-Regelwerk

Füge das im Tab „Text" des Strategy Designers ein oder nutze die Dashboard-Schaltfläche oben, um es als Template zu laden.

name: rsi_mean_revert
weight: 1.0
long_only: true
indicators:
  rsi14: {kind: rsi, period: 14}
entry:
  combine: AND
  rules:
    - {lhs: {indicator: rsi14}, op: lt, rhs: {value: 30.0}}
exit:
  combine: OR
  rules:
    - {lhs: {indicator: rsi14}, op: gt, rhs: {value: 70.0}}
risk:
  stop_loss_pct: 0.03
  take_profit_pct: 0.05
  cooldown_bars: 5

Indikatoren

  • rsi14RSI (period 14)

    Relative Strength Index — a 0-100 oscillator that compares the size of recent up-closes to the size of recent down-closes. Values under 30 are typically called oversold, over 70 overbought.

Eintrittsbedingungen

Der Bot eröffnet eine Position in der Kerze nach dem Erfüllen aller unten genannten Bedingungen.

  • Enter long when RSI(14) prints below 30 — the textbook oversold threshold.
  • Only one position at a time; the cooldown blocks immediate re-entry after an exit.

Ausstiegsbedingungen

Jede der folgenden Bedingungen schließt die Position.

  • Close the position when RSI(14) recovers above 70.
  • Hard stop-loss at 3% below entry; take-profit at 5%.

Erwartetes Verhalten

Choppy zig-zag equity curve with frequent small wins and the occasional outlier loss when a sharp downtrend leaves RSI pinned in the oversold zone. Fits range-bound chop; struggles in strong directional regimes.

Beschreibt den Charakter der Equity-Kurve, ist keine Rendite-Prognose. Backtests sind keine Versprechen über Live-Performance.

Probier es mit deinen eigenen Daten

Öffne das Template im Dashboard, um es auf BTC, ETH oder einem beliebigen CCXT-Symbol zu backtesten — oder kopier das YAML in den Strategy Designer, um es vorher zu bearbeiten.

Vergangenes Verhalten in Backtests ist keine Garantie für künftige Performance. Märkte ändern sich; Regelwerke müssen erneut validiert werden. Trading auf eigenes Risiko.