이 전략은 여러 가지 기술 분석 지표와 다른 거래 전략 사이의 스위치를 결합하여 시장 조건을 동적으로 식별하는 적응 거래 시스템이다. 이 시스템은 주로 이동 평균 (MA), 볼링거 밴드 (BB), 상대 강도 지수 (RSI) 를 기반으로 하며, 시장 트렌드와 범위 오스실레이션 특성에 따라 가장 적합한 거래 방법을 자동으로 선택합니다. 이 전략은 다른 수익 및 스톱 로스 매개 변수를 설정함으로써 트렌딩 및 범위 시장에 대한 차별화된 리스크 관리 솔루션을 구현합니다.
이 전략은 시장 트렌드를 결정하기 위해 50주기 및 20주기 이동 평균을 사용하여 볼링거 밴드 및 RSI와 결합하여 과잉 구매 및 과잉 판매 영역을 식별합니다. 트렌딩 시장에서 시스템은 주로 느린 이동 평균과 빠른 및 느린 라인 사이의 교차와 가격 관계에 기반하여 거래합니다. 범위 시장에서는 주로 볼링거 밴드 브레이크와 RSI 과잉 구매 / 과잉 판매 신호를 거래합니다. 시스템은 트렌딩 시장에서 6%와 범위 시장에서 4%를 사용하여 위험 통제를 위해 균일한 2% 스톱 로스로 시장 조건에 따라 자동으로 수익률을 조정합니다.
이 전략은 여러 가지 고전 기술 지표를 결합하여 다른 시장 환경에 적응할 수 있는 적응 가능한 거래 시스템을 구축합니다. 운영 단순성을 유지하면서 시스템은 역동적인 시장 상태 식별 및 자동 거래 전략 전환을 달성하여 강력한 실용성을 보여줍니다. 차별화된 수익 및 스톱 로스 설정을 통해 전략은 위험을 제어하면서 좋은 수익성을 유지합니다. 더 많은 기술 지표를 도입하고 매개 변수 조정 메커니즘을 최적화함으로써 전략의 안정성과 신뢰성을 더욱 향상시킬 수 있습니다.
/*backtest start: 2024-01-17 00:00:00 end: 2025-01-16 00:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT","balance":49999}] */ //@version=6 strategy("Supply & Demand Test 1 - Enhanced", overlay=true) // Inputs ma_length = input.int(50, title="50-period Moving Average Length", minval=1) ma_length_fast = input.int(20, title="20-period Moving Average Length", minval=1) bb_length = input.int(20, title="Bollinger Bands Length", minval=1) bb_std_dev = input.float(2.0, title="Bollinger Bands Std Dev", step=0.1) rsi_length = input.int(14, title="RSI Length", minval=1) stop_loss_percent = input.float(0.02, title="Stop Loss Percent", step=0.001, minval=0.001) take_profit_trend = input.float(0.06, title="Take Profit Percent (Trend)", step=0.001, minval=0.001) take_profit_range = input.float(0.04, title="Take Profit Percent (Range)", step=0.001, minval=0.001) // Moving Averages ma_slow = ta.sma(close, ma_length) ma_fast = ta.sma(close, ma_length_fast) // Bollinger Bands bb_basis = ta.sma(close, bb_length) bb_dev = ta.stdev(close, bb_length) bb_upper = bb_basis + bb_std_dev * bb_dev bb_lower = bb_basis - bb_std_dev * bb_dev // RSI rsi = ta.rsi(close, rsi_length) // Market Conditions is_trending_up = close > ma_slow is_trending_down = close < ma_slow is_range_bound = not (is_trending_up or is_trending_down) // Entry Conditions long_trend_entry = is_trending_up and close >= ma_slow * 1.02 short_trend_entry = is_trending_down and close <= ma_slow * 0.98 long_ma_crossover = ta.crossover(ma_fast, ma_slow) short_ma_crossover = ta.crossunder(ma_fast, ma_slow) long_range_entry = is_range_bound and close <= bb_lower * 0.97 short_range_entry = is_range_bound and close >= bb_upper * 1.03 long_rsi_entry = is_range_bound and rsi < 30 short_rsi_entry = is_range_bound and rsi > 70 // Entry and Exit Logic if long_trend_entry strategy.entry("Long Trend", strategy.long) strategy.exit("Exit Long Trend", from_entry="Long Trend", stop=close * (1 - stop_loss_percent), limit=close * (1 + take_profit_trend)) alert("Entered Long Trend", alert.freq_once_per_bar) if short_trend_entry strategy.entry("Short Trend", strategy.short) strategy.exit("Exit Short Trend", from_entry="Short Trend", stop=close * (1 + stop_loss_percent), limit=close * (1 - take_profit_trend)) alert("Entered Short Trend", alert.freq_once_per_bar) if long_ma_crossover strategy.entry("Long MA Crossover", strategy.long) strategy.exit("Exit Long MA Crossover", from_entry="Long MA Crossover", stop=close * (1 - stop_loss_percent), limit=close * (1 + take_profit_trend)) alert("Entered Long MA Crossover", alert.freq_once_per_bar) if short_ma_crossover strategy.entry("Short MA Crossover", strategy.short) strategy.exit("Exit Short MA Crossover", from_entry="Short MA Crossover", stop=close * (1 + stop_loss_percent), limit=close * (1 - take_profit_trend)) alert("Entered Short MA Crossover", alert.freq_once_per_bar) if long_range_entry strategy.entry("Long Range", strategy.long) strategy.exit("Exit Long Range", from_entry="Long Range", stop=close * (1 - stop_loss_percent), limit=close * (1 + take_profit_range)) alert("Entered Long Range", alert.freq_once_per_bar) if short_range_entry strategy.entry("Short Range", strategy.short) strategy.exit("Exit Short Range", from_entry="Short Range", stop=close * (1 + stop_loss_percent), limit=close * (1 - take_profit_range)) alert("Entered Short Range", alert.freq_once_per_bar) if long_rsi_entry strategy.entry("Long RSI", strategy.long) strategy.exit("Exit Long RSI", from_entry="Long RSI", stop=close * (1 - stop_loss_percent), limit=close * (1 + take_profit_range)) alert("Entered Long RSI", alert.freq_once_per_bar) if short_rsi_entry strategy.entry("Short RSI", strategy.short) strategy.exit("Exit Short RSI", from_entry="Short RSI", stop=close * (1 + stop_loss_percent), limit=close * (1 - take_profit_range)) alert("Entered Short RSI", alert.freq_once_per_bar) // Plotting plot(ma_slow, color=color.blue, title="50-period MA") plot(ma_fast, color=color.orange, title="20-period MA") plot(bb_upper, color=color.red, title="Bollinger Upper") plot(bb_lower, color=color.green, title="Bollinger Lower") plot(bb_basis, color=color.gray, title="Bollinger Basis") hline(70, "Overbought (RSI)", color=color.red, linestyle=hline.style_dotted) hline(30, "Oversold (RSI)", color=color.green, linestyle=hline.style_dotted)