Dies ist eine Dynamik-Handelsstrategie, die auf RSI- und EMA-Indikatoren basiert und technische Analysen über mehrere Zeitrahmen hinweg kombiniert. Die Strategie führt Trades auf der Grundlage von RSI-Überkauft/Überverkauft-Signalen mit EMA-Trendbestätigung aus und verwendet dynamische Positionsgrößen. Das Kernkonzept besteht darin, kurzfristige RSI (2-Periode) mit mittelfristigen RSI (14-Periode) -Signalen zu kombinieren und gleichzeitig drei verschiedene EMAs (50/100/200) zur Trendrichtungbestätigung zu verwenden.
Die Strategie verwendet einen mehrschichtigen Validierungsmechanismus für Handelsentscheidungen. Lange Bedingungen erfordern RSI14 unter 31 und RSI2 über 10, zusammen mit EMA50, EMA100 und EMA200 in einer bärischen Ausrichtung. Kurze Bedingungen erfordern RSI14 über 69 und RSI2 unter 90, mit EMAs in einer bullischen Ausrichtung. Die Strategie umfasst einen RSI-basierten Take-Profit-Mechanismus, der automatisch Positionen schließt, wenn RSI extreme Werte erreicht und die Preisbewegung die Position begünstigt.
Diese Strategie kombiniert Momentum-Trading mit Trend-Nachfolgungsmerkmalen und erhöht die Handelszuverlässigkeit durch mehrere technische Indikatoren. Während bestimmte Risiken bestehen, können die vorgeschlagenen Optimierungsrichtungen die Strategie-Stabilität weiter verbessern. Die Hauptmerkmale der Strategie sind die Kombination von kurz- und mittelfristigen technischen Indikatoren mit dynamischem Positionsmanagement, um ein komplettes Handelssystem zu bilden. Durch ein ordnungsgemäßes Risikomanagement und Parameteroptimierung verspricht diese Strategie eine stabile Performance im tatsächlichen Handel.
/*backtest start: 2024-11-21 00:00:00 end: 2024-11-28 00:00:00 period: 15m basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Custom RSI EMA Strategy", overlay=true, default_qty_type=strategy.fixed, default_qty_value=1) // Definování vstupních podmínek rsi_14 = ta.rsi(close, 14) rsi_2 = ta.rsi(close, 2) ema_50 = ta.ema(close, 50) ema_100 = ta.ema(close, 100) ema_200 = ta.ema(close, 200) // Pákový efekt leverage = 20 // Podmínky pro long pozici longCondition = (rsi_14[1] < 31) and ta.crossover(rsi_2, 10) and (ema_50 < ema_100) and (ema_100 < ema_200) // Podmínky pro short pozici shortCondition = (rsi_14[1] > 69) and ta.crossunder(rsi_2, 90) and (ema_50 > ema_100) and (ema_100 > ema_200) // Definování průměrné ceny pozice var float long_avg_price = na var float short_avg_price = na // Sledujeme, zda se velikost pozice změnila var float last_position_size = na // Přerušení průměrné ceny pozice při změně pozice if (last_position_size != strategy.position_size) long_avg_price := na short_avg_price := na // Aktualizace průměrné ceny pozice if (strategy.position_size > 0) long_avg_price := strategy.position_avg_price short_avg_price := na else if (strategy.position_size < 0) short_avg_price := strategy.position_avg_price long_avg_price := na // Uložení aktuální velikosti pozice pro příští bar last_position_size := strategy.position_size // Podmínky pro take profit takeProfitLongCondition = (rsi_14 > 69) and (rsi_2 > 90) and (long_avg_price < close) takeProfitShortCondition = (rsi_14 < 31) and (rsi_2 < 10) and (short_avg_price > close) // Velikost pozice new_position_size = strategy.position_size == 0 ? na : math.abs(strategy.position_size) * 2 // Úprava velikosti pozice s ohledem na pákový efekt position_value = strategy.equity * leverage trade_qty = position_value / close // Vstup do long pozice s dvojnásobkem aktuální pozice nebo standardní velikostí při první pozici if (longCondition) strategy.entry("Long", strategy.long, qty=new_position_size == na ? trade_qty : new_position_size) // Vstup do short pozice s dvojnásobkem aktuální pozice nebo standardní velikostí při první pozici if (shortCondition) strategy.entry("Short", strategy.short, qty=new_position_size == na ? trade_qty : new_position_size) // Výstup z long pozice při splnění podmínek pro take profit if (takeProfitLongCondition) strategy.close("Long") // Výstup z short pozice při splnění podmínek pro take profit if (takeProfitShortCondition) strategy.close("Short") // Zvýraznění části grafu, kde platí podmínky pro long highlightLongCondition = (ema_50 < ema_100) and (ema_100 < ema_200) bgcolor(highlightLongCondition ? color.new(color.green, 90) : na) // Zvýraznění části grafu, kde platí podmínky pro short highlightShortCondition = (ema_50 > ema_100) and (ema_100 > ema_200) bgcolor(highlightShortCondition ? color.new(color.red, 90) : na) // Přidání bodů pozic do grafu plotshape(series=longCondition, location=location.belowbar, color=color.green, style=shape.labelup, text="L") plotshape(series=shortCondition, location=location.abovebar, color=color.red, style=shape.labeldown, text="S") // Vykreslení průměrné ceny pozice pro long a short plot(long_avg_price, title="Long Avg Price", color=color.blue, linewidth=2) plot(short_avg_price, title="Short Avg Price", color=color.orange, linewidth=2)