Noon Barbari
Registrieren

Zurück zur Strategie-Bibliothek

ConfluenceNur Long15m1h4h

RSI dip with trend filter strategy

Buy oversold RSI dips, but only when price is still above the 50 EMA.

These

Buy oversold RSI dips, but only when price is still above the 50 EMA.

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.

Cleaner equity curve than vanilla RSI mean reversion because the EMA filter cuts the worst counter-trend trades. Fewer setups, but each one comes with a stacked deck.

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: rsi_with_trend_filter
weight: 1.0
long_only: true
indicators:
  rsi14: {kind: rsi, period: 14}
  ema50: {kind: ema, period: 50}
entry:
  combine: AND
  rules:
    - {lhs: {indicator: rsi14}, op: lt, rhs: {value: 35.0}}
    - {lhs: {bar: close}, op: gt, rhs: {indicator: ema50}}
exit:
  combine: OR
  rules:
    - {lhs: {indicator: rsi14}, op: gt, rhs: {value: 65.0}}
    - {lhs: {bar: close}, op: lt, rhs: {indicator: ema50}}
risk:
  stop_loss_pct: 0.025
  take_profit_pct: 0.05
  cooldown_bars: 4

Indikatoren

  • rsi14RSI (period 14)

    14-bar momentum oscillator; the 35 threshold is slightly looser than the classic 30 to fire alongside the trend filter.

  • ema50EMA (period 50)

    Long-horizon trend baseline. Price above EMA(50) is treated as 'still in an uptrend' — dips below the EMA are skipped.

Eintrittsbedingungen

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

  • RSI(14) below 35 AND
  • Close is above the 50-bar EMA — the dip is with the trend, not against it.

Ausstiegsbedingungen

Jede der folgenden Bedingungen schließt die Position.

  • RSI(14) above 65, OR close drops below EMA(50).
  • Hard 2.5% stop; 5% take-profit.

Erwartetes Verhalten

Cleaner equity curve than vanilla RSI mean reversion because the EMA filter cuts the worst counter-trend trades. Fewer setups, but each one comes with a stacked deck.

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.