이 전략은 트렌드 추적과 시간 기반의 출구 메커니즘을 결합한다. 핵심 개념은 위험 통제를 위해 연말 강제 청산 메커니즘을 통합하면서 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")