この戦略は,スーパートレンド指標に基づいた自動化取引システムで,スーパートレンドラインとの価格クロスオーバーを分析することによって取引信号を生成する.この戦略は固定ATR期間とマルチプリキュータパラメータを使用し,市場のトレンドを決定するためにスーパートレンドラインとの価格クロスオーバー方向を組み合わせ,トレンドフォローと資本管理の有機的統合を達成する.
戦略の核心は,波動性指標ATR (Average True Range) に基づいて構築されたスーパートレンド指標を使用しています.具体的実施には以下が含まれます:
超トレンド指数の特徴により,トレンドキャプチャとリスクコントロールの統一性を達成する.この戦略は,強力な実用性と拡張性を示し,適切なパラメータ設定と最適化方向の実装を通じて,ライブ取引で安定したパフォーマンスの約束を示している.
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-09 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Commodity KIng", overlay=true) // Supertrend Parameters atr_period = 10 // Fixed ATR Period atr_multiplier = 2.0 // Fixed ATR Multiplier // Calculate Supertrend [supertrend, direction] = ta.supertrend(atr_multiplier, atr_period) // Plot Supertrend with reversed colors plot(supertrend, color=direction > 0 ? color.red : color.green, title="Supertrend", linewidth=2) // Buy and Sell Conditions longCondition = ta.crossover(close, supertrend) // Buy when price crosses above Supertrend shortCondition = ta.crossunder(close, supertrend) // Sell when price crosses below Supertrend // Execute Buy and Sell Orders if (longCondition) strategy.entry("Buy", strategy.long) if (shortCondition) strategy.entry("Sell", strategy.short) // Exit Conditions if (shortCondition) strategy.close("Buy") // Close long position if price crosses below Supertrend if (longCondition) strategy.close("Sell") // Close short position if price crosses above Supertrend // Alerts if (longCondition) alert("Buy Signal: " + str.tostring(close), alert.freq_once_per_bar) if (shortCondition) alert("Sell Signal: " + str.tostring(close), alert.freq_once_per_bar)