이 전략은 다양한 기간의 EMA를 ATR 기반의 동적 스톱-러스 메커니즘과 결합한 여러 기하급수적인 이동 평균 (EMA) 크로스오버 신호를 기반으로 하는 거래 시스템이다. 이 전략은 주요 신호 지표로 10, 39, 73 기간의 EMA를 활용하고, 트렌드 필터로 143 기간 더 높은 시간 프레임 EMA를 통합하며, ATR 지표를 사용하여 동적 스톱-러스 및 영업 목표를 구현한다.
핵심 논리는 여러 EMA 크로스오버와 트렌드 확인을 기반으로 한다. 단기 EMA (10 기간) 가 중기 EMA (39 기간) 를 넘어서고 가격이 장기 EMA (73 기간) 와 더 높은 시간 프레임 EMA (143 기간) 둘 다 넘어서면 긴 신호가 생성된다. 반대로 단기 EMA가 중기 EMA를 넘어서고 가격이 장기 EMA 둘 다 넘어서면 짧은 신호가 생성된다. 이 전략은 스톱-로스 목표에 1x ATR과 영업 타겟에 2x ATR을 사용하여 1:2의 위험-이익 비율을 구현한다.
이 전략은 여러 EMA 크로스오버와 ATR 기반의 동적 스톱을 통해 트렌드 추적 및 리스크 관리를 결합한 거래 시스템을 구축합니다. 주요 강점은 다양한 시간 프레임 확인 메커니즘과 동적 위치 관리에 있으며, 시장 및 지연 위험을 고려합니다. 전략 안정성과 수익성은 볼륨 확인, 트렌드 강도 필터링 및 기타 최적화로 더욱 향상 될 수 있습니다. 실제 응용에서는 매개 변수를 다른 시장 환경과 거래 도구 특성에 따라 조정해야합니다.
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-28 00:00:00 period: 2d basePeriod: 2d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Enhanced EMA Crossover Strategy", overlay=true) // Define the EMA lengths ema_short_length = 10 ema_long_length = 39 ema_filter_length = 73 ema_higher_tf_length = 143 // Calculate the EMAs ema_short = ta.ema(close, ema_short_length) ema_long = ta.ema(close, ema_long_length) ema_filter = ta.ema(close, ema_filter_length) ema_higher_tf = request.security(syminfo.tickerid, "D", ta.ema(close, ema_higher_tf_length)) // Calculate ATR for volatility-based stop loss and take profit atr_length = 14 atr = ta.atr(atr_length) // Plot the EMAs plot(ema_short, title="EMA 10", color=color.blue) plot(ema_long, title="EMA 35", color=color.red) plot(ema_filter, title="EMA 75", color=color.orange) plot(ema_higher_tf, title="EMA Higher TF", color=color.purple) // EMA crossover conditions with EMA 75 and higher timeframe EMA filter longCondition = ta.crossover(ema_short, ema_long) and close > ema_filter and close > ema_higher_tf shortCondition = ta.crossunder(ema_short, ema_long) and close < ema_filter and close < ema_higher_tf // Execute long trade with dynamic stop loss and take profit if (longCondition) strategy.entry("Long", strategy.long) strategy.exit("Take Profit/Stop Loss", "Long", limit=close + 2 * atr, stop=close - 1 * atr) // Execute short trade with dynamic stop loss and take profit if (shortCondition) strategy.entry("Short", strategy.short) strategy.exit("Take Profit/Stop Loss", "Short", limit=close - 2 * atr, stop=close + 1 * atr) // Plot signals on the chart plotshape(series=longCondition, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal", text="BUY") plotshape(series=shortCondition, location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal", text="SELL")