この戦略は,トレンドフォローとタイムベースの退出メカニズムを組み合わせます.コアコンセプトは,リスク管理のために年末強制清算メカニズムを組み込む一方で,60日移動平均値との価格関係を監視することによって市場のトレンドを把握することです.閉値が60日MAをポジティブな傾斜で破るとロングポジションが入力され,すべてのポジションは毎年最後の取引日に閉鎖されます.
この戦略は,いくつかの基本的な要素に基づいています. 1. 傾向決定: 中期トレンド指標として60日間のシンプル・ムービング・アベア (SMA) を使用し,トレンドの方向性を確認するために14日間の傾斜計算を行います. 2. エントリー・シグナル:価格が60日間のMAを前向きの傾斜で突破し,潜在的上昇傾向を示すとき,購入シグナルが生成される. 3. アクジットメカニズム: 年間ポジションリスクを回避するために,各年の最後の取引日にすべてのポジションを閉じる固定時間ベースの退出を実施する. 4. 取引時間管理: 取引は有効な取引日にのみ行われることを保証するために,日付範囲制御と取引日の検証を組み込む.
この戦略は,トレンドフォローとタイムマネジメントを組み合わせて比較的堅牢な取引システムを創出する.そのシンプルで明確な論理は,理解し実行しやすくし,良い実用的な有用性を提供する.適切なパラメータ最適化と追加のリスク管理措置により,戦略は実際の取引条件で安定した収益を生む可能性を示しています.
/*backtest start: 2025-01-09 00:00:00 end: 2025-01-16 00:00:00 period: 3m basePeriod: 3m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT","balance":49999}] */ //@version=5 strategy("Buy above 60-day MA, Sell at year-end", overlay=true, pyramiding=1) // Define inputs for start and end dates startDate = input(defval=timestamp("2010-01-01"), title="Start Date") endDate = input(defval=timestamp("2024-12-31"), title="End Date") // Define 60-day moving average length = input.int(defval=60, title="MA Length", minval=1) ma = ta.sma(close, length) slope = ta.sma(ma, 14) - ta.sma(ma, 14)[1] // Check if current bar is within the specified date range withinDateRange = true // Function to check if a day is a trading day (Monday to Friday) isTradingDay(day) => true // Check if current bar is the last trading day of the year // Check if current bar is the last trading day of the year isLastTradingDayOfYear = false yearNow = year(time) if (month == 12 and dayofmonth == 31) isLastTradingDayOfYear := isTradingDay(time) else if (month == 12 and dayofmonth == 30) isLastTradingDayOfYear := isTradingDay(time) and not isTradingDay(time + 86400000) else if (month == 12 and dayofmonth == 29) isLastTradingDayOfYear := isTradingDay(time) and not isTradingDay(time + 86400000) and not isTradingDay(time + 86400000 * 2) // Plot moving average plot(ma, color=color.blue, linewidth=2) // Buy when closing price crosses above 60-day MA and up trend if (withinDateRange and ta.crossover(close, ma) and slope > 0) strategy.entry("Buy", strategy.long) // Sell all positions at the last trading day of the year if (isLastTradingDayOfYear) strategy.close_all(comment="Sell at year-end") // Plot buy and sell signals //plotshape(series=ta.crossover(close, ma), location=location.belowbar, color=color.green, style=shape.labelup, text="Buy") //plotshape(series=isLastTradingDayOfYear, location=location.abovebar, color=color.red, style=shape.labeldown, text="Sell")