これは指数動平均 (EMA) クロスオーバーと相対強度指数 (RSI) の確認に基づいたトレンドフォロー戦略である.この戦略は,短期間および長期間のEMA クロスオーバーからの信号とRSIモメントの確認を組み合わせ,パーセントベースのストップロスのメカニズムを組み込む.技術指標のシネージ効果を通じてリスク制御を維持しながら,重要な市場トレンド逆転を把握することを目的としている.
この戦略は2つの技術指標フィルタリングメカニズムを使用している.まず,短期EMA (9期) と長期EMA (21期) のクロスオーバーを通じて潜在的なトレンド逆転点を特定する.短期EMAが長期EMAを超越し,RSI値が指定値を超えると購入信号が生成される.短期EMAが長期EMAを下回り,RSI値が指定値を下回るときに販売信号が発生する.さらに,この戦略は百分比ベースのストップ損失メカニズムを組み込み,ダウンサイドリスクを効果的に制御するために,各取引に動的なストップ損失レベルを設定する.
この戦略は,移動平均値とモメンタム指標の組み合わせを通じて,完全なトレンドフォローする取引システムを構築する.その主な利点は,信頼できる信号確認メカニズムと包括的なリスク制御システムにある.固有の限界があるものの,戦略の全体的なパフォーマンスは,提案された最適化方向性によってさらに向上することができる.これは中長期トレンドトレーダーに適した強力な戦略フレームワークである.
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-25 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Simple Trend Following Strategy", overlay=true) // Inputs shortEMA = input.int(9, title="Short EMA Length", minval=1) longEMA = input.int(21, title="Long EMA Length", minval=1) confirmationRSI = input.int(50, title="RSI Confirmation Level", minval=1, maxval=100) stopLossPercent = input.float(2, title="Stop Loss Percentage", minval=0.1) // Stop Loss percentage // Calculations emaShort = ta.ema(close, shortEMA) emaLong = ta.ema(close, longEMA) rsiValue = ta.rsi(close, 14) // Buy and Sell Conditions buySignal = ta.crossover(emaShort, emaLong) and rsiValue > confirmationRSI sellSignal = ta.crossunder(emaShort, emaLong) and rsiValue < confirmationRSI // Plotting Signals plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY") plotshape(sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL") // Plotting EMAs plot(emaShort, title="Short EMA", color=color.yellow) plot(emaLong, title="Long EMA", color=color.purple) // Strategy logic strategy.entry("Buy", strategy.long, when=buySignal) strategy.entry("Sell", strategy.short, when=sellSignal) // Calculate stop loss price based on stopLossPercent longStopLossPrice = strategy.position_avg_price * (1 - stopLossPercent / 100) shortStopLossPrice = strategy.position_avg_price * (1 + stopLossPercent / 100) // Draw stop loss line for long positions if (strategy.position_size > 0) // For long positions line.new(x1=bar_index, y1=longStopLossPrice, x2=bar_index + 1, y2=longStopLossPrice, color=color.red, width=2, style=line.style_dashed) // Draw stop loss line for short positions if (strategy.position_size < 0) // For short positions line.new(x1=bar_index, y1=shortStopLossPrice, x2=bar_index + 1, y2=shortStopLossPrice, color=color.green, width=2, style=line.style_dashed)