These
Retest of the last opposite candle before a Break of Structure — long bullish OBs, short bearish.
Passt zu Trendfolge-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.
Selective — OBs are sparse and retests are rarer still. The strategy spends most of the time flat and produces concentrated trades around real structure flips.
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: Order Block — retest of last opposite candle before BOS
category: trend_following
skill: intermediate
name: order_block
weight: 1.0
long_only: false
indicators:
ob:
kind: order_block
swing_length: 10
entry:
combine: OR
rules:
- combine: AND
direction: long
rules:
- {lhs: {indicator: ob, field: bull_retest}, op: gt, rhs: {value: 0}}
- combine: AND
direction: short
rules:
- {lhs: {indicator: ob, field: bear_retest}, op: gt, rhs: {value: 0}}
exit:
combine: OR
rules:
- {lhs: {indicator: ob, field: bull_mitigated}, op: gt, rhs: {value: 0}}
- {lhs: {indicator: ob, field: bear_mitigated}, op: gt, rhs: {value: 0}}
- {lhs: {indicator: ob, field: bear_retest}, op: gt, rhs: {value: 0}}
- {lhs: {indicator: ob, field: bull_retest}, op: gt, rhs: {value: 0}}
risk:
trailing_stop_pct: 0.04
cooldown_bars: 3
Indikatoren
obOrder Block (swing length 10)Clean-room SMC order-block detector. Tracks the last opposite-direction candle before each BOS and emits a retest signal the first time price re-enters that zone.
Eintrittsbedingungen
Der Bot eröffnet eine Position in der Kerze nach dem Erfüllen aller unten genannten Bedingungen.
- Long on a bullish OB retest (bull_retest > 0).
- Short on a bearish OB retest.
Ausstiegsbedingungen
Jede der folgenden Bedingungen schließt die Position.
- Position closes when the OB is mitigated (price closes through the opposite edge).
- An opposite-side OB retest also invalidates the trade.
- 4% trailing stop, 3-bar cooldown.
Erwartetes Verhalten
Selective — OBs are sparse and retests are rarer still. The strategy spends most of the time flat and produces concentrated trades around real structure flips.
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.