
Die Strategie ist ein Trend-Tracking- und Dynamik-Trading-System, das auf mehreren technischen Indikatoren basiert. Sie kombiniert hauptsächlich die mittleren Trend-Indikatoren (ADX), die relativ starken Indikatoren (RSI) und die tatsächlichen Wellenlängen (ATR) zur Identifizierung potenzieller Multi-Trade-Gelegenheiten und nutzt die ATR, um dynamische Gewinn- und Stop-Loss-Preise zu setzen. Die Strategie eignet sich insbesondere für Optionshandel mit 1-Minuten-Zeiträumen und erhöht die Erfolgsrate des Handels durch strenge Einstiegsbedingungen und Risikomanagement.
Die Kernlogik der Strategie umfasst die folgenden Schlüsselkomponenten:
Die Strategie baut ein vollständiges Handelssystem auf, indem sie mehrere technische Indikatoren kombiniert. Ihr Vorteil liegt in der Kombination von Trend- und Dynamikanalyse und der Anwendung eines dynamischen Risikomanagement-Ansatzes. Obwohl ein gewisses Risiko besteht, kann eine stabile Performance im tatsächlichen Handel durch vernünftige Parameteroptimierung und Risikokontrollmaßnahmen erzielt werden.
/*backtest
start: 2024-02-21 00:00:00
end: 2025-02-18 08:00:00
period: 1d
basePeriod: 1d
exchanges: [{"eid":"Binance","currency":"ETH_USDT"}]
*/
// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © SPcuttack
//@version=6
strategy("ADX & RSI Strategy with ATR Targets", overlay=true)
// Input parameters
adxLength = input.int(14, title="ADX Length")
adxSmoothing = input.int(14, title="ADX Smoothing")
rsiLength = input.int(14, title="RSI Length")
rsiSmaLength = input.int(20, title="RSI SMA Length")
atrLength = input.int(14, title="ATR Length")
atrMultiplierTarget = input.float(2.5, title="ATR Multiplier for Target")
atrMultiplierStop = input.float(1.5, title="ATR Multiplier for Stop Loss")
// ADX and DMI calculations
[adx, plusDI, minusDI] = ta.dmi(adxLength, adxSmoothing)
// RSI calculations
rsi = ta.rsi(close, rsiLength)
rsiSma = ta.sma(rsi, rsiSmaLength)
// ATR calculation
atr = ta.atr(atrLength)
// Slope calculations (difference from the previous value)
adxSlope = adx - adx[1]
rsiSlope = rsi - rsi[1]
// Entry conditions
adxCondition = adx > 18 and plusDI > minusDI and adxSlope > 0
rsiCondition = rsi > rsiSma and rsiSlope > 0
rsiCross60 = ta.crossover(rsi, 60)
// Global variable for long entry
var bool longEntry = false
if (adxCondition and rsiCondition and rsiCross60)
longEntry := true
else
longEntry := false
// Variables for target and stop loss levels
var float entryPrice = na
var float targetLevel = na
var float stopLossLevel = na
// Strategy actions
if (longEntry)
entryPrice := close
targetLevel := entryPrice + atr * atrMultiplierTarget
stopLossLevel := entryPrice - atr * atrMultiplierStop
strategy.entry("Long", strategy.long)
if (strategy.position_size > 0)
if (close >= targetLevel)
strategy.close("Long", comment="Tgt Hit")
if (close <= stopLossLevel)
strategy.close("Long", comment="SL Hit")
// Ensure lines plot on the chart body
targetLine = strategy.position_size > 0 ? targetLevel : na
stopLossLine = strategy.position_size > 0 ? stopLossLevel : na
plot(targetLine, title="Target Level", color=color.green, linewidth=2, offset=0)
plot(stopLossLine, title="Stop Loss Level", color=color.red, linewidth=2, offset=0)
// Add entry price for reference
plot(strategy.position_size > 0 ? entryPrice : na, title="Entry Price", color=color.blue, linewidth=1, style=plot.style_cross, offset=0)