Noon Barbari
Registrieren

Zurück zur Strategie-Bibliothek

Mean ReversionLong & Short5m15m1h4h

Fair Value Gap strategy

Buy the imbalance bar of a fresh bullish FVG; short the mirror. Exit when the gap fills.

These

Buy the imbalance bar of a fresh bullish FVG; short the mirror. Exit when the gap fills.

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.

Momentum-into-imbalance — fires on explosive bars, exits when the imbalance reverts. Equity curve is choppy with frequent small trades; works best when price respects imbalances and gives the bot a chance to ride the displacement.

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.

_template:
  title: Fair Value Gap — buy unfilled bullish FVG
  category: mean_reversion
  skill: intermediate
name: fair_value_gap
weight: 1.0
long_only: false
indicators:
  fvg:
    kind: fair_value_gap
    min_gap_pct: 0.001
entry:
  combine: OR
  rules:
    - combine: AND
      direction: long
      rules:
        - {lhs: {indicator: fvg, field: bull_signal}, op: gt, rhs: {value: 0}}
    - combine: AND
      direction: short
      rules:
        - {lhs: {indicator: fvg, field: bear_signal}, op: gt, rhs: {value: 0}}
exit:
  combine: OR
  rules:
    - {lhs: {indicator: fvg, field: bull_filled}, op: gt, rhs: {value: 0}}
    - {lhs: {indicator: fvg, field: bear_filled}, op: gt, rhs: {value: 0}}
risk:
  trailing_stop_pct: 0.04
  cooldown_bars: 3

Indikatoren

  • fvgFair Value Gap (min gap 0.1%)

    Clean-room 3-bar Fair Value Gap / imbalance detector. bull_signal / bear_signal fire on the bar a new gap opens; bull_filled / bear_filled fire when price retraces back through the gap.

Eintrittsbedingungen

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

  • Long on the bar a bullish FVG opens (bull_signal > 0).
  • Short on a bearish FVG.

Ausstiegsbedingungen

Jede der folgenden Bedingungen schließt die Position.

  • Position closes the bar the gap is filled (rebalanced).
  • 4% trailing stop, 3-bar cooldown.

Erwartetes Verhalten

Momentum-into-imbalance — fires on explosive bars, exits when the imbalance reverts. Equity curve is choppy with frequent small trades; works best when price respects imbalances and gives the bot a chance to ride the displacement.

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.