이 전략은 경향 필터와 동적 스톱-러스 메커니즘으로 최적화된 볼링거 밴드를 기반으로 한 평균 반전 거래 시스템입니다. 이 전략은 승률을 향상시키고 위험을 관리하기 위해 기술적 인 지표를 사용하여 평균에서 가격 오차를 거래하는 데 통계적 원칙을 적용합니다.
이 전략은 몇 가지 핵심 요소에 기반합니다.
이 전략은 고전적 기술 분석과 현대적 수치적 방법을 결합한다. 여러 지표 확인과 엄격한 위험 통제를 통해 전략은 좋은 실용성을 입증한다. 라이브 구현 전에 철저한 백테스팅과 데모 거래가 권장된다.
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-17 00:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Optimized Bollinger Mean Reversion", overlay=true) // Bollinger Band Settings length = input.int(20, title="BB Length") src = input(close, title="Source") mult = input.float(2.0, title="BB Multiplier") // Bollinger Bands Calculation basis = ta.sma(src, length) dev = mult * ta.stdev(src, length) upper = basis + dev lower = basis - dev // Plot the Bollinger Bands plot(basis, color=color.blue) p1 = plot(upper, color=color.red) p2 = plot(lower, color=color.red) fill(p1, p2, color=color.rgb(41, 98, 255, 90)) // Trend Filter - 50 EMA ema_filter = ta.ema(close, 50) // ATR for Dynamic Stop Loss/Take Profit atr_value = ta.atr(14) // Buy condition - price touches lower band and above 50 EMA buy_condition = ta.crossover(close, lower) and close > ema_filter // Sell condition - price touches upper band and below 50 EMA sell_condition = ta.crossunder(close, upper) and close < ema_filter // Strategy Execution if (buy_condition) strategy.entry("Buy", strategy.long) if (sell_condition) strategy.entry("Sell", strategy.short) // Exit with dynamic ATR-based stop loss and take profit strategy.exit("Take Profit/Stop Loss", from_entry="Buy", limit=2*atr_value, stop=1*atr_value) strategy.exit("Take Profit/Stop Loss", from_entry="Sell", limit=2*atr_value, stop=1*atr_value)