이 전략은 RSI 지표와 볼링거 밴드를 결합한 스윙 거래 시스템이다. 거래 결정을 위해 볼링거 밴드 내의 가격 위치를 고려하면서 시장 과잉 구매 및 과잉 판매 조건을 식별합니다. 전략은 상대적으로 느린 RSI 문턱을 (60에서 과잉 구매, 40에서 과잉 판매) 사용하며 2%의 수익 취득 메커니즘과 함께 입출 시기를 위한 볼링거 밴드 경계를 통합합니다.
핵심 논리는 몇 가지 핵심 요소에 기반합니다.
구매 조건:
판매 조건:
부진 시장 위험: 부진 시장에서 빈번한 거래를 유발할 수 있습니다. 솔루션: 이동 평균 필터 또는 트렌드 확인 메커니즘을 추가합니다.
거짓 파업 위험: 볼린거 밴드의 짧은 가격 파업은 잘못된 신호를 유발할 수 있습니다. 해결 방법: 확인 기간을 추가하거나 분산 요구 사항을 증가시킵니다.
시장 환경 의존성: 성능은 다른 시장 주기에 따라 달라질 수 있습니다. 솔루션: 시장 특성에 따라 매개 변수를 동적으로 조정합니다.
이 전략은 RSI와 볼링거 밴드의 시너지를 통해 비교적 견고한 스윙 거래 시스템을 구축합니다. 주요 특징은 여러 확인 메커니즘을 통해 위험을 제어하는 동시에 거래 기회를 유지하는 것입니다. 잠재적 인 위험이 있지만 매개 변수 최적화 및 추가 필터링 조건으로 전략의 안정성과 신뢰성을 더욱 향상시킬 수 있습니다. 변동성 시장에 적합하지만 특정 시장 특성에 따라 매개 변수 조정이 필요합니다.
/*backtest start: 2024-12-06 00:00:00 end: 2025-01-04 08:00:00 period: 1h basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Demo GPT - Adjusted Swing Trading for SBI", overlay=true, commission_type=strategy.commission.percent, commission_value=0.1, slippage=3) // Input Parameters rsiLength = input.int(14, minval=1, title="RSI Length") rsiOverbought = input.int(60, minval=50, maxval=100, title="RSI Overbought Level") // Relaxed level rsiOversold = input.int(40, minval=0, maxval=50, title="RSI Oversold Level") // Relaxed level bbLength = input.int(20, minval=1, title="Bollinger Bands Length") bbMult = input.float(2.0, minval=0.1, maxval=5, title="Bollinger Bands StdDev Multiplier") maLength = input.int(50, minval=1, title="Moving Average Length") // RSI Calculation rsi = ta.rsi(close, rsiLength) // Bollinger Bands Calculation bbBasis = ta.sma(close, bbLength) bbDev = bbMult * ta.stdev(close, bbLength) bbUpper = bbBasis + bbDev bbLower = bbBasis - bbDev // Moving Average ma = ta.sma(close, maLength) // Buy Signal: Price near or below lower Bollinger Band AND RSI below oversold level buySignal = (close <= bbLower * 1.01) and (rsi < rsiOversold) // Sell Signal: Price near or above upper Bollinger Band OR RSI above overbought level sellSignal = (close >= bbUpper * 0.99) or (rsi > rsiOverbought) // Date Range Inputs startDate = input(timestamp("2018-01-01 00:00"), title="Start Date") endDate = input(timestamp("2069-12-31 23:59"), title="End Date") inDateRange = true // Strategy Logic if buySignal and inDateRange strategy.entry("Swing Long SBI", strategy.long) if strategy.position_size > 0 and (sellSignal or close >= strategy.position_avg_price * 1.02) strategy.close("Swing Long SBI") // Plotting plot(bbBasis, title="Bollinger Bands Basis", color=color.blue) plot(bbUpper, title="Bollinger Bands Upper", color=color.red) plot(bbLower, title="Bollinger Bands Lower", color=color.green) plot(ma, title="Moving Average", color=color.orange) hline(rsiOverbought, "RSI Overbought", color=color.red, linestyle=hline.style_dotted) hline(rsiOversold, "RSI Oversold", color=color.green, linestyle=hline.style_dotted) plot(rsi, title="RSI", color=color.purple) // Fill Bollinger Bands for Visualization fill(plot(bbUpper), plot(bbLower), title="Bollinger Bands Background", color=color.rgb(33, 150, 243, 95))