Noon Barbari
Registrieren

Zurück zur Strategie-Bibliothek

Mean ReversionNur Long5m15m1h

Stochastic %K/%D reversion strategy

Buy a slow stochastic %K cross above %D inside the oversold zone, exit on the mirror.

These

Buy a slow stochastic %K cross above %D inside the oversold zone, exit on the mirror.

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.

Higher trade frequency than RSI mean reversion and louder noise. Fits range-bound regimes; produces fast small wins and small losses. Trend regimes can be expensive — the oscillator stays pinned for many bars.

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: stochastic_revert
weight: 1.0
long_only: true
indicators:
  stoch: {kind: stochastic, period: 14, smooth_d: 3}
entry:
  combine: AND
  rules:
    - {lhs: {indicator: stoch, field: k}, op: crosses_up, rhs: {indicator: stoch, field: d}}
    - {lhs: {indicator: stoch, field: k}, op: lt, rhs: {value: 30.0}}
exit:
  combine: OR
  rules:
    - {lhs: {indicator: stoch, field: k}, op: crosses_down, rhs: {indicator: stoch, field: d}}
    - {lhs: {indicator: stoch, field: k}, op: gt, rhs: {value: 80.0}}
risk:
  stop_loss_pct: 0.025
  take_profit_pct: 0.04
  cooldown_bars: 4

Indikatoren

  • stochSlow Stochastic (period 14, smooth 3)

    Two-line oscillator that compares the current close to the high/low range over the lookback. %K is the raw line; %D is its 3-bar SMA smoother. Crosses inside the 0-20 / 80-100 extremes are read as reversal cues.

Eintrittsbedingungen

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

  • %K crosses above %D AND
  • Both lines are inside the oversold zone (%K < 30).

Ausstiegsbedingungen

Jede der folgenden Bedingungen schließt die Position.

  • %K crosses back below %D, OR %K pushes above 80 (overbought).
  • Hard 2.5% stop; 4% take-profit.

Erwartetes Verhalten

Higher trade frequency than RSI mean reversion and louder noise. Fits range-bound regimes; produces fast small wins and small losses. Trend regimes can be expensive — the oscillator stays pinned for many bars.

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.