이 문서에서는 여러 가지 기술 지표를 결합한 거래 전략 시스템을 소개합니다. 이 시스템은 MACD, EMA, 간단한 이동 평균 및 MA100을 포함한 다양한 기술 분석 방법을 통합하여 거래자에게 포괄적인 거래 솔루션을 제공하는 것을 목표로하는 위험 관리 및 시간 필터를 제공합니다.
이 전략은 MACD 전략, EMA8 전략, 단순 MA 전략, MA100 전략 등 4개의 독립적인 하위 전략으로 구성된 다전 전략 기술 분석 시스템이다. 이 시스템은 거래자가 시장 조건에 따라 다양한 전략 유형을 유연하게 선택할 수 있게 해 주며, 각 하위 전략은 고유의 진입 및 출구 로직을 가지고 있으며, 그에 따른 위험 관리 메커니즘에 의해 지원된다.
MACD 전략: MACD 히스토그램에서 연속 상승 및 하락 패턴을 식별하여 시장 추세를 포착합니다. 구매 신호는 세 개의 연속 상승 히스토그램 바에 의해 유발되며 판매 신호는 두 개의 연속 하락 바에 의해 유발됩니다.
EMA8 전략: 주간 EMA8, 이전 최고, 촛불 패턴 분석을 결합합니다. 시스템은 가격이 주간 EMA8 이상으로 돌파되면 긴 지위를 입력하고 이전 최고치를 넘어서 닫고 강력한 촛불 패턴을 보여줍니다. 이 전략에는 2%의 스톱 로스 설정이 포함되어 있습니다.
간단한 MA 전략: 트렌드를 따르는 시스템을 구축하기 위해 여러 기하급수적인 이동 평균 (10,15,25,35,40 기간) 을 사용합니다. 짧은 기간 MAs가 더 긴 기간 MAs보다 높고 가격이 가장 짧은 기간 MA보다 높을 때 구매 신호가 발생합니다. 2%의 스톱 로스가 구현됩니다.
MA100 전략: 100일 MA, 8일 MA 및 25일 MA를 결합하여 과판 조건에 대한 스토카스틱 오시레이터를 통합합니다. 단기 MA가 장기 MA보다 높고 MA100 근처의 가격 변동이 있을 때 시스템에서는 과판 영역에서 구매 기회를 찾습니다. 이 전략은 3%의 스톱 로스 설정을 사용합니다.
이 다중 전략 기술 분석 거래 시스템은 여러 성숙한 기술 분석 방법을 통합하여 거래자에게 포괄적인 거래 결정 프레임워크를 제공합니다. 이 시스템의 주요 장점은 유연성과 위험 통제 능력에 있습니다. 그러나 올바른 구현을 위해 거래자가 시장에 대한 깊은 이해를 필요로합니다. 지속적인 최적화와 개선으로이 시스템은 점점 더 정교한 거래 도구가 될 가능성이 있습니다.
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-09 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This Pine Script™ v5 code implements multiple trading strategies //@version=5 strategy("Multi-Strategy Trading System", overlay=true) // Input parameters for customization strategy_type = input.string("MACD", "Strategy Type", options=["MACD", "EMA8", "SimpleMA", "MA100"]) show_macd = input.bool(true, "Show MACD Signals") show_ema = input.bool(true, "Show EMA Signals") show_ma = input.bool(true, "Show MA Signals") // MACD Strategy Components [macdLine, signalLine, histLine] = ta.macd(close, 12, 26, 9) // Function to detect three consecutive ascending histogram bars isThreeAscendingBars(hist) => not na(hist[3]) and hist[3] < hist[2] and hist[2] < hist[1] and hist[1] < hist[0] // Function to detect two consecutive descending histogram bars isTwoDescendingBars(hist) => not na(hist[2]) and hist[2] > hist[1] and hist[1] > hist[0] // EMA Strategy Components ema8_weekly = request.security(syminfo.tickerid, "W", ta.ema(close, 8)) weeklyHigh = request.security(syminfo.tickerid, "W", high) previousWeekHigh = weeklyHigh[1] isStrongCandleWeekly = request.security(syminfo.tickerid, "W", close > open and (close - open) > (high - low) * 0.6) // Simple MA Strategy Components ema10 = ta.ema(close, 10) ema15 = ta.ema(close, 15) ema25 = ta.ema(close, 25) ema35 = ta.ema(close, 35) ema40 = ta.ema(close, 40) // MA100 Strategy Components ma100 = ta.sma(close, 100) ma8 = ta.sma(close, 8) ma25 = ta.sma(close, 25) // Corrected Stochastic Oscillator Calculation stochK = ta.stoch(high, low, close, 14) stochD = ta.sma(stochK, 3) isOversold = stochK < 20 and stochD < 20 // MACD Strategy Logic if strategy_type == "MACD" // Buy condition: Three ascending histogram bars after lowest if isThreeAscendingBars(histLine) strategy.entry("MACD Buy", strategy.long) // Sell condition: Two descending histogram bars after highest if isTwoDescendingBars(histLine) strategy.close("MACD Buy") // EMA8 Strategy Logic if strategy_type == "EMA8" if close > ema8_weekly and close > previousWeekHigh and isStrongCandleWeekly strategy.entry("EMA8 Buy", strategy.long) strategy.exit("EMA8 Exit", "EMA8 Buy", stop=low - (low * 0.02)) // Simple MA Strategy Logic if strategy_type == "SimpleMA" isUptrend = ema10 > ema15 and ema15 > ema25 and ema25 > ema35 and ema35 > ema40 if isUptrend and close > ema10 and close[1] <= ema10[1] strategy.entry("MA Buy", strategy.long) strategy.exit("MA Exit", "MA Buy", stop=low - (low * 0.02)) // MA100 Strategy Logic if strategy_type == "MA100" isUptrend = ma8 > ma100 and ma25 > ma100 isPriceNearMA100 = math.abs(close - ma100) / ma100 * 100 < 1 if isUptrend and isPriceNearMA100 and isOversold strategy.entry("MA100 Buy", strategy.long) strategy.exit("MA100 Exit", "MA100 Buy", stop=low - (low * 0.03)) // Plotting components for visualization plot(ma100, "MA100", color=color.blue, linewidth=2) plot(ema8_weekly, "EMA8 Weekly", color=color.yellow, linewidth=2) plot(series=histLine, title="MACD Histogram", style=plot.style_histogram, color=histLine > 0 ? color.green : color.red)