この戦略は,Zスコア統計的方法,相対強度指数 (RSI) およびスーパートレンド指標を組み合わせた定量的な取引システムである.この戦略は,統計的な価格偏差を監視し,モメンタム指標とトレンド確認を組み合わせて,市場における高い確率の取引機会を特定する.この戦略は,市場過剰購入および過剰販売の機会を捕捉するだけでなく,トレンド確認を通じて偽信号をフィルタリングし,双方向取引を可能にします.
この戦略のコア論理は,3つの主要な技術指標のシネージに基づいています.まず,75期間の移動平均値と標準偏差を使用して,現在の価格の平均値からの偏差を測定するために価格のZスコアを計算します.Zスコアが1.1を超えたり,-1.1を下回るときは,重要な統計的偏差を示します.次に,RSIインジケーターはモメント確認として導入され,RSIが方向に準拠することを要求します (ロングポジションではRSI>60,ショートポジションではRSI<40).最後に,スーパートレンドインジケーターは11期間のATRと2.0の倍数因子に基づいて計算されたトレンドフィルターとして機能します.すべての3つの条件が同時に満たされたときにのみ取引信号が生成されます.
この戦略は,取引の信頼性を向上させるために,複数の信号確認を使用して,統計的方法と技術的分析を組み合わせる定量的な取引戦略である.この戦略の主要な利点は客観的な数学モデルと包括的なリスク管理メカニズムにある.一方,パラメータ最適化と市場適応性に注意を払う必要があります.提案された最適化方向性を通じて,特に市場環境とリスク管理に動的に適応する上で,さらなる改善の余地があります.この戦略は,高い変動性と明確なトレンドを有する市場に適しており,安定した収益を追求する定量的なトレーダーにとって価値ある考慮事項です.
/*backtest start: 2024-01-01 00:00:00 end: 2024-11-26 00:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Z-Score Long and Short Strategy with Supertrend", overlay=true) // Inputs for Z-Score len = input.int(75, "Z-Score Lookback Length") z_long_threshold = 1.1 // Threshold for Z-Score to open long z_short_threshold = -1.1 // Threshold for Z-Score to open short // Z-Score Calculation z = (close - ta.sma(close, len)) / ta.stdev(close, len) // Calculate Driver RSI driver_rsi_length = input.int(14, "Driver RSI Length") // Input for RSI Length driver_rsi = ta.rsi(close, driver_rsi_length) // Calculate the RSI // Supertrend Parameters atrPeriod = input.int(11, "ATR Length", minval=1) factor = input.float(2.0, "Factor", minval=0.01, step=0.01) // Supertrend Calculation [supertrend, direction] = ta.supertrend(factor, atrPeriod) // Conditions for Long and Short based on Z-Score z_exceeds_long = z >= z_long_threshold and driver_rsi > 60 z_exceeds_short = z <= z_short_threshold and driver_rsi < 40 // Entry Conditions if (z_exceeds_long and direction < 0) // Enter Long if Z-Score exceeds threshold and Supertrend is down strategy.entry("Long", strategy.long) label.new(bar_index, low, text="Open Long", style=label.style_label_up, color=color.green, textcolor=color.white, size=size.small) alert("Open Long", alert.freq_once_per_bar) // Alert for Long entry if (z_exceeds_short and direction > 0) // Enter Short if Z-Score exceeds threshold and Supertrend is up strategy.entry("Short", strategy.short) label.new(bar_index, high, text="Open Short", style=label.style_label_down, color=color.red, textcolor=color.white, size=size.small) alert("Open Short", alert.freq_once_per_bar) // Alert for Short entry // Plot Supertrend upTrend = plot(direction < 0 ? supertrend : na, "Up Trend", color=color.green, style=plot.style_linebr) downTrend = plot(direction > 0 ? supertrend : na, "Down Trend", color=color.red, style=plot.style_linebr) fill(upTrend, downTrend, color=color.new(color.green, 90), fillgaps=false) // Alert conditions for Supertrend changes (optional) alertcondition(direction[1] > direction, title='Downtrend to Uptrend', message='The Supertrend value switched from Downtrend to Uptrend') alertcondition(direction[1] < direction, title='Uptrend to Downtrend', message='The Supertrend value switched from Uptrend to Downtrend')