이 전략은 시장 트렌드와 거래 신호를 결정하기 위해 서로 다른 기간과 상대적 강도 지수 (RSI) 를 가진 세 개의 기하급수적인 이동 평균 (EMA) 을 사용합니다. 가격은 200 일 EMA를 넘어서고 RSI가 50 이상일 때 구매 신호가 생성되며 가격이 200 일 EMA 아래로 떨어지고 RSI가 50 이하로 떨어지면 판매 신호가 생성됩니다. 이 전략은 매일 시간 프레임에서 스윙 거래에 적합합니다.
이 전략은 EMA 상승 크로스오버와 상승 영역의 RSI를 기반으로 한 거래 신호를 활용하여 중장기 트렌드 움직임을 비교적 명확하게 파악할 수 있습니다. 그러나 초기 트렌드 역전 및 불안정한 시장에서 성능은 평균이 될 수 있으므로 전반적으로 트렌딩 시장에 더 적합합니다. 신호, 포지션 사이징, 스톱 손실 및 영업 및 필터링 조건에서 더 많은 최적화를 통해 전략의 안정성과 위험 조정 수익을 향상시킬 수 있습니다.
/*backtest start: 2024-05-01 00:00:00 end: 2024-05-31 23:59:59 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Lexi Supreme", overlay=true) // Calculate EMA 200 ema200 = ta.ema(close, 200) // Calculate EMA 50 ema50 = ta.ema(close, 50) // Calculate EMA 21 ema21 = ta.ema(close, 21) // Calculate RSI rsiValue = ta.rsi(close, 14) // Buy condition: RSI above 50 and price crosses above EMA 200 buyCondition = ta.crossover(close, ema200) and rsiValue > 50 // Sell condition: RSI below 50 and price crosses below EMA 200 sellCondition = ta.crossunder(close, ema200) and rsiValue < 50 // Position Size (1% of account balance) positionSize = 1 // Stop Loss and Take Profit values for buy trades stopLossBuy = ema200 - 0.00050 takeProfitBuy = 0.00100 // Stop Loss and Take Profit values for sell trades stopLossSell = ema200 + 0.00050 takeProfitSell = 0.00100 // Plot EMA 200 line in blue plot(ema200, color=color.blue, title="EMA 200") // Plot EMA 50 line in red plot(ema50, color=color.red, title="EMA 50") // Plot EMA 21 line in green plot(ema21, color=color.green, title="EMA 21") // Plot buy entry points in yellow plotshape(series=buyCondition, title="Buy Signal", color=color.yellow, style=shape.triangleup, location=location.belowbar, size=size.small) // Plot sell entry points in white plotshape(series=sellCondition, title="Sell Signal", color=color.white, style=shape.triangledown, location=location.abovebar, size=size.small) // Strategy entry and exit conditions with position size, stop loss, and take profit for buy trades if (buyCondition) strategy.entry("Buy", strategy.long, qty=positionSize) strategy.exit("Take Profit/Stop Loss Buy", from_entry="Buy", stop=stopLossBuy, limit=close + takeProfitBuy) // Strategy entry and exit conditions with position size, stop loss, and take profit for sell trades if (sellCondition) strategy.entry("Sell", strategy.short, qty=positionSize) strategy.exit("Take Profit/Stop Loss Sell", from_entry="Sell", stop=stopLossSell, limit=close - takeProfitSell)