Noon Barbari
Registrieren

Zurück zur Strategie-Bibliothek

ConfluenceNur Long1h4h1d

Buy-the-dip (Bollinger + RSI) strategy

Two-condition confluence: lower-band stretch AND oversold RSI before taking the dip.

These

Two-condition confluence: lower-band stretch AND oversold RSI before taking the dip.

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

Fewer trades than either rule alone — the AND filter is strict — but higher conviction per signal. Long flat periods waiting for the two conditions to align, then a cluster of trades during real selloffs.

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: buy_the_dip
weight: 1.0
long_only: true
indicators:
  bb20: {kind: bollinger, period: 20, std_mult: 2.0}
  rsi14: {kind: rsi, period: 14}
entry:
  combine: AND
  rules:
    - {lhs: {bar: close}, op: lt, rhs: {indicator: bb20, field: lower}}
    - {lhs: {indicator: rsi14}, op: lt, rhs: {value: 35.0}}
exit:
  combine: OR
  rules:
    - {lhs: {bar: close}, op: gt, rhs: {indicator: bb20, field: mid}}
risk:
  stop_loss_pct: 0.03
  take_profit_pct: 0.05
  cooldown_bars: 4

Indikatoren

  • bb20Bollinger Bands (period 20, σ × 2)

    Volatility envelope around the 20-bar SMA. The lower band marks a 2-standard-deviation stretch below the mean.

  • rsi14RSI (period 14)

    14-bar momentum oscillator. The 35 threshold here is slightly looser than the textbook 30 so the rule fires alongside a fresh Bollinger stretch.

Eintrittsbedingungen

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

  • Close is below the lower Bollinger band AND
  • RSI(14) is below 35 — momentum confirms the price stretch.

Ausstiegsbedingungen

Jede der folgenden Bedingungen schließt die Position.

  • Close returns above the 20-bar mean (the middle band).
  • Hard 3% stop; 5% take-profit.

Erwartetes Verhalten

Fewer trades than either rule alone — the AND filter is strict — but higher conviction per signal. Long flat periods waiting for the two conditions to align, then a cluster of trades during real selloffs.

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.