이 전략은 G 채널, RSI 및 MACD 지표를 통합하는 고급 트렌드 다음 거래 시스템입니다. 이 전략은 모멘텀 지표를 결합하는 동안 동적으로 지원 및 저항 구역을 계산하여 높은 확률의 거래 기회를 식별합니다. 핵심은 더 정확한 신호 생성을 위해 모멘텀 변화를 확인하기 위해 RSI와 MACD를 사용하여 사용자 지정 G 채널 지표를 사용하여 시장 추세를 결정하는 데 있습니다.
이 전략은 신호 신뢰성을 보장하기 위해 세 번 필터링 메커니즘을 사용합니다. 첫째, G 채널은 지정된 기간 동안 최대 및 최소 가격을 계산하여 역동적으로 지원 및 저항 구역을 구성합니다. 가격이 채널을 통과 할 때 시스템은 잠재적 인 트렌드 반전 지점을 식별합니다. 둘째, RSI 지표는 시장이 과소 구매 또는 과소매 상태에 있는지 확인하여 더 가치있는 거래 기회를 필터링하는 데 도움이됩니다. 마지막으로 MACD 지표는 히스토그램 값을 통해 동력 방향과 강도를 확인합니다. 거래 신호는 세 가지 조건이 모두 충족 될 때만 생성됩니다.
이 전략은 여러 가지 기술적 지표를 종합적으로 사용하여 완전한 거래 시스템을 구축합니다. 주요 장점은 다차원 신호 확인 메커니즘과 포괄적 인 리스크 관리 시스템입니다. 지속적인 최적화 및 개선을 통해 전략은 다양한 시장 환경에서 안정적인 성능을 유지하는 것을 약속합니다. 거래자는 라이브 거래 전에 다양한 매개 변수 조합을 철저히 테스트하고 특정 시장 특성에 따라 적절한 조정을 수행하는 것이 좋습니다.
/*backtest start: 2024-11-19 00:00:00 end: 2024-12-18 08:00:00 period: 1h basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=6 strategy("VinSpace Optimized Strategy", shorttitle="VinSpace Magic", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=10) // Input Parameters length = input.int(100, title="Length") src = input(close, title="Source") stop_loss_pct = input.float(1, title="Stop Loss (%)") / 100 take_profit_pct = input.float(3, title="Take Profit (%)") / 100 rsi_length = input.int(14, title="RSI Length") rsi_overbought = input.int(70, title="RSI Overbought") rsi_oversold = input.int(30, title="RSI Oversold") macd_short = input.int(12, title="MACD Short Length") macd_long = input.int(26, title="MACD Long Length") macd_signal = input.int(9, title="MACD Signal Length") // ---- G-Channel Calculations ---- var float a = na var float b = na a := math.max(src, na(a[1]) ? src : a[1]) - (na(a[1]) ? 0 : (a[1] - b[1]) / length) b := math.min(src, na(b[1]) ? src : b[1]) + (na(a[1]) ? 0 : (a[1] - b[1]) / length) avg = (a + b) / 2 // ---- RSI Calculation ---- rsi = ta.rsi(src, rsi_length) // ---- MACD Calculation ---- [macdLine, signalLine, _] = ta.macd(src, macd_short, macd_long, macd_signal) macd_hist = macdLine - signalLine // ---- Trend Detection Logic ---- crossup = b[1] < close[1] and b > close crossdn = a[1] < close[1] and a > close bullish = ta.barssince(crossdn) <= ta.barssince(crossup) c = bullish ? color.new(color.green, 0) : color.new(color.red, 0) // Plotting the Average p1 = plot(avg, "Average", color=c, linewidth=2) p2 = plot(close, "Close price", color=c, linewidth=1) // Adjusted fill with transparency fill(p1, p2, color=color.new(c, 90)) // ---- Buy and Sell Signals ---- showcross = input(true, title="Show Buy/Sell Labels") plotshape(showcross and bullish and not bullish[1], location=location.belowbar, style=shape.labelup, color=color.green, size=size.small, text="Buy", textcolor=color.white, offset=-1) plotshape(showcross and not bullish and bullish[1], location=location.abovebar, style=shape.labeldown, color=color.red, size=size.small, text="Sell", textcolor=color.white, offset=-1) // ---- Entry and Exit Conditions ---- enterLong = bullish and rsi < rsi_oversold and macd_hist > 0 enterShort = not bullish and rsi > rsi_overbought and macd_hist < 0 // Exit Conditions exitLong = ta.crossunder(close, avg) or rsi > rsi_overbought exitShort = ta.crossover(close, avg) or rsi < rsi_oversold // Position Size (example: 10% of equity) posSize = 1 // Submit Entry Orders if enterLong strategy.entry("EL", strategy.long, qty=posSize) if enterShort strategy.entry("ES", strategy.short, qty=posSize) // Submit Exit Orders if exitLong strategy.close("EL") if exitShort strategy.close("ES") // Set Stop Loss and Take Profit for the trades strategy.exit("Take Profit/Stop Loss Long", from_entry="EL", loss=stop_loss_pct * close, profit=take_profit_pct * close) strategy.exit("Take Profit/Stop Loss Short", from_entry="ES", loss=stop_loss_pct * close, profit=take_profit_pct * close)