이는 기하급수적인 이동평균 (EMA) 크로스오버와 상대적 강도 지수 (RSI) 확인을 기반으로하는 트렌드-추천 전략이다. 이 전략은 단기 및 장기 EMA 크로스오버의 신호를 RSI 모멘텀 확인과 결합하며, 비율 기반의 스톱-러스 메커니즘을 통합한다. 이는 기술적 지표의 시너지 효과를 통해 위험 통제를 유지하면서 중요한 시장 트렌드 반전을 포착하는 것을 목표로 한다.
이 전략은 이중 기술 지표 필터링 메커니즘을 사용합니다. 첫째, 단기 EMA (9 기간) 와 장기 EMA (21 기간) 의 교차를 통해 잠재적 인 트렌드 역전 지점을 식별합니다. 단기 EMA가 장기 EMA를 넘어서고 RSI 값이 지정된 수준 이상일 때 구매 신호가 생성됩니다. 단기 EMA가 장기 EMA를 넘어서고 RSI 값이 지정된 수준 이하일 때 판매 신호가 발생합니다. 또한 전략은 비율 기반의 스톱-러스 메커니즘을 통합하여 각 거래에 동적 스톱-러스 수준을 설정하여 하락 위험을 효과적으로 제어합니다.
이 전략은 이동 평균과 동력 지표의 조합을 통해 완전한 트렌드-추천 거래 시스템을 구축합니다. 주요 장점은 신뢰할 수있는 신호 확인 메커니즘과 포괄적 인 위험 제어 시스템입니다. 일부 고유 한 한계가 있지만 제안 된 최적화 방향으로 전략의 전반적인 성능을 더욱 향상시킬 수 있습니다. 이것은 중장기 트렌드 트레이더에 적합한 강력한 전략 프레임워크입니다.
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-25 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Simple Trend Following Strategy", overlay=true) // Inputs shortEMA = input.int(9, title="Short EMA Length", minval=1) longEMA = input.int(21, title="Long EMA Length", minval=1) confirmationRSI = input.int(50, title="RSI Confirmation Level", minval=1, maxval=100) stopLossPercent = input.float(2, title="Stop Loss Percentage", minval=0.1) // Stop Loss percentage // Calculations emaShort = ta.ema(close, shortEMA) emaLong = ta.ema(close, longEMA) rsiValue = ta.rsi(close, 14) // Buy and Sell Conditions buySignal = ta.crossover(emaShort, emaLong) and rsiValue > confirmationRSI sellSignal = ta.crossunder(emaShort, emaLong) and rsiValue < confirmationRSI // Plotting Signals plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY") plotshape(sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL") // Plotting EMAs plot(emaShort, title="Short EMA", color=color.yellow) plot(emaLong, title="Long EMA", color=color.purple) // Strategy logic strategy.entry("Buy", strategy.long, when=buySignal) strategy.entry("Sell", strategy.short, when=sellSignal) // Calculate stop loss price based on stopLossPercent longStopLossPrice = strategy.position_avg_price * (1 - stopLossPercent / 100) shortStopLossPrice = strategy.position_avg_price * (1 + stopLossPercent / 100) // Draw stop loss line for long positions if (strategy.position_size > 0) // For long positions line.new(x1=bar_index, y1=longStopLossPrice, x2=bar_index + 1, y2=longStopLossPrice, color=color.red, width=2, style=line.style_dashed) // Draw stop loss line for short positions if (strategy.position_size < 0) // For short positions line.new(x1=bar_index, y1=shortStopLossPrice, x2=bar_index + 1, y2=shortStopLossPrice, color=color.green, width=2, style=line.style_dashed)