이 전략은 상대 강도 지수 (RSI), 가중화 이동 평균 (WMA), 기하급수적 이동 평균 (EMA) 를 결합한 트렌드 다음 거래 시스템이다. 여러 기술적 지표를 활용하여 전략은 트렌드 역전 지점에서의 시장 동력 변화를 캡처하여 거래 신호를 생성합니다. 시스템은 WMA와 EMA 크로스오버를 사용하여 트렌드 방향을 확인하고 RSI를 통합하여 거래 정확성을 향상시키기 위해 시장 조건을 필터합니다.
이 전략의 핵심 논리는 다음의 핵심 요소에 기초합니다. 1. RSI 계산은 시장 과잉 구매/ 과잉 판매 상황을 측정하기 위해 14기간의 설정을 사용합니다. 2. 45주기 WMA와 89주기 EMA의 크로스오버는 트렌드 전환을 확인합니다. 3. 입국 조건: - 긴 신호: WMA는 EMA와 RSI <50을 넘습니다. - 짧은 신호: WMA는 EMA와 RSI>50 아래로 넘습니다. 4. 시스템은 RSI 색상 변화를 통해 시장 상황을 시각화합니다. RSI> 70일 때 녹색, RSI<30일 때 빨간색으로 표시됩니다. 5. 중립 구역 을 식별 하는 데 도움 이 되기 위해 파란색 배경 은 RSI 30-70 범위 에 설정 되어 있다
이것은 여러 가지 기술 지표에 기반한 트렌드 다음 전략으로, RSI, WMA 및 EMA를 결합하여 거래 안정성을 유지하면서 시장 트렌드 반전 지점을 포착합니다. 적절한 최적화 및 위험 관리 조치를 통해 특정 지연 및 잘못된 신호 위험을 가지고 있지만 전략은 좋은 실용적 가치와 확장에 대한 여지가 있습니다.
/*backtest start: 2024-12-17 00:00:00 end: 2025-01-16 00:00:00 period: 1h basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT","balance":49999}] */ //@version=5 strategy(title="RSI + WMA + EMA Strategy", shorttitle="RSI Strategy", overlay=true) // RSI Settings rsiLengthInput = input.int(14, minval=1, title="RSI Length", group="RSI Settings") rsiSourceInput = input.source(close, "Source", group="RSI Settings") // WMA and EMA Settings wmaLengthInput = input.int(45, minval=1, title="WMA Length", group="WMA Settings") wmaColorInput = input.color(color.blue, title="WMA Color", group="WMA Settings") emaLengthInput = input.int(89, minval=1, title="EMA Length", group="EMA Settings") emaColorInput = input.color(color.purple, title="EMA Color", group="EMA Settings") // RSI Calculation change = ta.change(rsiSourceInput) up = ta.rma(math.max(change, 0), rsiLengthInput) down = ta.rma(-math.min(change, 0), rsiLengthInput) rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down)) // WMA and EMA Calculation wma = ta.wma(rsi, wmaLengthInput) ema = ta.ema(rsi, emaLengthInput) // RSI Color Logic rsiColor = rsi > 70 ? color.new(color.green, 100 - math.round(rsi)) : rsi < 30 ? color.new(color.red, math.round(rsi)) : color.new(color.blue, 50) // Plot RSI, WMA, and EMA plot(rsi, "RSI", color=rsiColor) plot(wma, title="WMA", color=wmaColorInput, linewidth=2) plot(ema, title="EMA", color=emaColorInput, linewidth=2) // Highlight RSI Area between 30 and 70 bgcolor(rsi >= 30 and rsi <= 70 ? color.new(color.blue, 90) : na) // Entry and Exit Conditions longCondition = ta.crossover(wma, ema) and rsi < 50 shortCondition = ta.crossunder(wma, ema) and rsi > 50 if (longCondition) strategy.entry("Long", strategy.long) alert("Buy Signal: WMA crossed above EMA, RSI < 50", alert.freq_once_per_bar) if (shortCondition) strategy.entry("Short", strategy.short) alert("Sell Signal: WMA crossed below EMA, RSI > 50", alert.freq_once_per_bar) // Optional: Plot Buy/Sell Signals on Chart plotshape(series=longCondition, style=shape.labelup, location=location.belowbar, color=color.green, size=size.small, title="Buy Signal") plotshape(series=shortCondition, style=shape.labeldown, location=location.abovebar, color=color.red, size=size.small, title="Sell Signal")