이 전략은 5분 시간 프레임에 기반한 자동화된 거래 시스템으로, 이동 평균 트렌드 추종과 볼륨 분석 방법을 결합한다. 이 전략은 거래 신호를 검증하기 위해 볼륨 분석을 통합하면서 시장 트렌드를 결정하기 위해 50 기간 간 간단한 이동 평균 (SMA) 을 사용합니다. 이 시스템은 완전히 자동화된 거래에 고정된 스톱 로스 및 영업 목표를 구현한다.
핵심 논리는 다음의 주요 구성 요소를 포함합니다. 1. 트렌드 식별: 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 마이너스 2. 볼륨 분석: 가격 움직임에 따라 구매 및 판매 볼륨을 계산하고, 폐쇄 가격 위치에 따라 각 촛불 내에서 볼륨을 분배합니다. 3. 신호 생성: 상승 추세에서 구매 부피가 판매 부피를 초과할 때 긴 신호를 생성; 하락 추세에서 판매 부피가 구매 부피를 초과할 때 짧은 신호를 생성. 4. 리스크 관리: 각 거래에 대한 리스크 리워드 비율을 관리하기 위해 3%의 스톱 로스 및 29%의 영리 목표를 구현합니다.
이 전략은 트렌드 추적 및 볼륨 분석을 결합하여 포괄적인 고주파 거래 시스템을 만듭니다. 주요 강점은 다차원 신호 확인과 강력한 위험 통제에 있습니다. 내재 위험 요소가 있지만 제안된 최적화 방향은 전략 안정성과 적응력을 더욱 향상시킬 수 있습니다. 전략은 특히 트렌딩 시장 환경에 적합하며 적절한 매개 변수 최적화 및 위험 관리로 안정적인 거래 결과를 얻을 수 있습니다.
/*backtest start: 2024-01-10 00:00:00 end: 2025-01-08 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT","balance":49999}] */ // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Jerryorange //@version=6 //@version=6 strategy("Autonomous 5-Minute Robot", overlay=true, fill_orders_on_standard_ohlc=true) // --- Inputs --- maLength = input.int(50, title="Trend MA Length") // Moving average length for trend detection volumeLength = input.int(10, title="Volume Length") // Length for volume analysis stopLossPercent = input.float(3, title="Stop Loss (%)") // 3% stop loss takeProfitPercent = input.float(29, title="Take Profit (%)") // 29% take profit // --- Market Trend Detection --- ma = ta.sma(close, maLength) // Simple moving average for trend direction isBullish = close > ma // Market is bullish if the close is above the moving average isBearish = close < ma // Market is bearish if the close is below the moving average // --- Volume Analysis --- buyVolume = (high != low) ? volume * (close - low) / (high - low) : 0 sellVolume = (high != low) ? volume * (high - close) / (high - low) : 0 totalVolume = volume // --- Define Market Direction over Last 30 Minutes (6 candles in 5-minute chart) --- lookback = 6 // 30 minutes / 5 minutes = 6 bars prevClose = close[lookback] // Previous close 30 minutes ago currentClose = close // Current close uptrend = currentClose > prevClose and isBullish // Uptrend condition downtrend = currentClose < prevClose and isBearish // Downtrend condition // --- Strategy Logic --- longCondition = uptrend and buyVolume > sellVolume // Buy signal when trend is up and buy volume exceeds sell volume shortCondition = downtrend and sellVolume > buyVolume // Sell signal when trend is down and sell volume exceeds buy volume // --- Entry and Exit Strategy --- if (longCondition) strategy.entry("Long", strategy.long) if (shortCondition) strategy.entry("Short", strategy.short) // --- Exit Strategy based on Stop Loss and Take Profit --- strategy.exit("Exit Long", "Long", stop=close * (1 - stopLossPercent / 100), limit=close * (1 + takeProfitPercent / 100)) strategy.exit("Exit Short", "Short", stop=close * (1 + stopLossPercent / 100), limit=close * (1 - takeProfitPercent / 100)) // --- Plotting for Visualization --- plot(ma, color=color.blue, title="50-period MA") // Trend line plotshape(longCondition, style=shape.labelup, location=location.belowbar, color=color.green, text="BUY") plotshape(shortCondition, style=shape.labeldown, location=location.abovebar, color=color.red, text="SELL")