이 전략은 여러 가지 기하급수적인 이동 평균 (EMA) 을 기반으로 한 자동화 거래 시스템으로, 5 기간, 20 기간 및 50 기간 EMA의 계층 분석을 통해 거래 신호를 설정합니다. 이 시스템의 독특한 디자인은 높은 가격, 낮은 가격 및 폐쇄 가격에 기반한 여러 EMA를 통합하여 수익을 확보하는 동시에 위험을 효과적으로 제어하기 위해 동적 스톱 로스 및 트레일 수익 메커니즘과 결합됩니다.
이 전략은 여러 시간 프레임 EMA 크로스오버와 위치 관계를 기반으로 거래 결정을 합니다. 구체적으로:
이 전략은 위계적 필터링과 동적 스톱 로스를 통해 위험을 효과적으로 제어하는 엄격하게 설계된 다중 이동 평균 거래 시스템입니다. 일부 빠른 시장 움직임을 놓칠 수 있지만 트렌딩 시장에서 일관성있게 수행합니다. 다른 시장 특성에 따라 매개 변수를 조정하고 신뢰성을 향상시키기 위해 볼륨 및 기타 보조 지표를 추가하는 것을 고려하는 것이 좋습니다. 이 전략은 중장기 투자에서 안정적인 수익을 추구하는 투자자에게 적합합니다.
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-03 00:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Automated EMA Strategy with Hierarchical Conditions", overlay=true) // Inputs for EMA lengths length_5 = 5 length_20 = 20 length_50 = 50 // Calculating EMAs ema_5 = ta.ema(close, length_5) ema_20_high = ta.ema(high, length_20) ema_20_low = ta.ema(low, length_20) ema_20_close = ta.ema(close, length_20) ema_50 = ta.ema(close, length_50) // Buy condition: 50 EMA < 20 EMA (Close) < 20 EMA (High) < 20 EMA (Low) < 5 EMA // and LTP above all EMAs buy_condition = ema_50 < ema_20_low and ema_20_low < ema_20_close and ema_20_close < ema_20_high and ema_20_high < ema_5 and close > ema_5 and close > ema_20_close and close > ema_20_high and close > ema_20_low and close > ema_50 // Stop-loss and target levels stop_loss = ema_20_low // Target condition: Close below 5 EMA target_condition = close < ema_5 // Check if there's an open position is_in_position = strategy.position_size > 0 // Execute Buy Signal only if no position is open if (buy_condition and not is_in_position) strategy.entry("Buy", strategy.long) // Exit conditions: Stop-loss or target (close below 5 EMA) if (is_in_position and (target_condition or close < stop_loss)) strategy.close("Buy") // Plotting the EMAs plot(ema_5, color=color.blue, title="5 EMA") plot(ema_20_high, color=color.green, title="20 EMA (High)") plot(ema_20_low, color=color.red, title="20 EMA (Low)") plot(ema_20_close, color=color.purple, title="20 EMA (Close)") plot(ema_50, color=color.orange, title="50 EMA")