この戦略は,トレンドフォローと平均逆転を組み合わせる定量的な取引システムである.これは,短期的な過剰販売機会を特定するために7日間の価格変動を利用しながら,主要なトレンド方向を決定するために200日移動平均 (MA200) を使用し,上向きのトレンドに最適なエントリータイミングを達成する.この方法は,価格調整中に方向的正確性とタイムリーな介入の両方を保証し,取引における技術分析を完全に活用する.
基本論理には2つの次元が含まれます.まずは,MA200を使用して長期トレンドを判断し,価格はMA200を超える場合にのみポジションを考慮し,次に,過去7取引日の価格パフォーマンスを観察し,MA200を超えるまま7日間の低値が発生するときにロングポジションを入力し,価格が7日間の高値に達するときにポジションを閉じる.このデザインはトレンドフォローと低点エントリーの両方を保証し,トレンドフォローと平均リバーションの概念を組み合わせた体系的な戦略を作成します.
ダブルセブン戦略 (Double Seven Strategy) は,トレンドフォローと平均逆転を有機的に組み合わせる定量的な取引システムである.MA200と7日間の価格変動の調整された使用を通じて,方向的精度と最適なエントリータイミングの両方を保証する.一定の制限があるものの,戦略は合理的な最適化とリスク管理を通じて実用的な価値と拡大可能性を秘めている.トレーダーは,安定性と収益性を高めるための実用的なアプリケーションにおいて市場特性と個人的なニーズに基づいて戦略を最適化することをお勧めする.
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-27 00:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © EdgeTools //@version=5 strategy("Larry Connors' Double Seven Strategy", overlay=true) // 200-day moving average ma200 = ta.sma(close, 200) // Conditions for Double Seven Strategy priceAboveMa200 = close > ma200 // Find the lowest close over the last 7 days lowestClose7Days = ta.lowest(close, 7) // Find the highest close over the last 7 days highestClose7Days = ta.highest(close, 7) // Entry and exit rules longCondition = priceAboveMa200 and close <= lowestClose7Days exitCondition = close >= highestClose7Days // Enter long position if (longCondition) strategy.entry("Long", strategy.long) // Exit long position if (exitCondition) strategy.close("Long") // Plot moving averages plot(ma200, "200-day MA", color=color.blue)