Noon Barbari
Registrieren

Zurück zur Strategie-Bibliothek

VolumenLong & Short1h4h1d

VFI Volume Flow strategy

Long when smart-money flow turns positive and crosses up; short on the mirrored signal.

These

Long when smart-money flow turns positive and crosses up; short on the mirrored signal.

Passt zu Volumen-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.

Slow oscillator — fewer trades than a price-based crossover, but each one is volume-confirmed. Equity curve is patient: long quiet stretches punctuated by participation surges.

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: VFI — Volume Flow crossover with zero-line filter
  category: volume
  skill: intermediate
name: vfi
weight: 1.0
long_only: false
indicators:
  vfi:
    kind: vfi
    length: 130
    coef: 0.2
    vcoef: 2.5
    signal_length: 5
    smooth_vfi: false
entry:
  combine: OR
  rules:
    - combine: AND
      direction: long
      rules:
        - {lhs: {indicator: vfi, field: vfi}, op: crosses_up, rhs: {indicator: vfi, field: signal}}
        - {lhs: {indicator: vfi, field: vfi}, op: gt, rhs: {value: 0}}
    - combine: AND
      direction: short
      rules:
        - {lhs: {indicator: vfi, field: vfi}, op: crosses_down, rhs: {indicator: vfi, field: signal}}
        - {lhs: {indicator: vfi, field: vfi}, op: lt, rhs: {value: 0}}
exit:
  combine: OR
  rules:
    - {lhs: {indicator: vfi, field: vfi}, op: crosses_down, rhs: {indicator: vfi, field: signal}}
    - {lhs: {indicator: vfi, field: vfi}, op: crosses_up, rhs: {indicator: vfi, field: signal}}
risk:
  trailing_stop_pct: 0.04
  cooldown_bars: 3

Indikatoren

  • vfiVFI (length 130, signal EMA 5)

    Port of LazyBear's Volume Flow Indicator: signed volume normalised by price-noise and recent volume average, with an EMA signal smoother. Positive readings = accumulation, negative = distribution.

Eintrittsbedingungen

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

  • Long when VFI crosses up through its signal line AND VFI is above zero (confirmed accumulation).
  • Short on the mirrored down-cross below zero.

Ausstiegsbedingungen

Jede der folgenden Bedingungen schließt die Position.

  • Opposite VFI/signal crossover closes the trade.
  • 4% trailing stop, 3-bar cooldown.

Erwartetes Verhalten

Slow oscillator — fewer trades than a price-based crossover, but each one is volume-confirmed. Equity curve is patient: long quiet stretches punctuated by participation surges.

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.