이 전략은 시장 트렌드를 결정하고 구매/판매 신호를 생성하기 위해 서로 다른 기간을 가진 세 개의 기하급수적인 이동 평균 (EMA) 을 사용합니다. 빠른 EMA, 느린 EMA 및 트렌드 필터 EMA 사이의 크로스오버, 트렌드 필터 EMA에 대한 가격 위치와 함께이 전략의 핵심 논리를 형성합니다. 또한 후쿠이즈 트렌드 지표는 보조 판단으로 도입되며 특정 조건 하에서 포지션 폐쇄를 유발합니다.
이 전략은 여러 기간 EMA와 후쿠이즈 트렌드 지표를 결합하여 비교적 완전한 트렌드 판단 및 거래 프레임워크를 구축합니다. 전략 논리는 명확하고 매개 변수는 조정 가능하며 적응력이 강합니다. 그러나 신호 지연 및 트렌드 판단 편차와 같은 잠재적 위험도 있습니다. 미래에 전략은 매개 변수 최적화, 지표 조합 및 위험 관리 측면에서 더 정밀화 될 수 있습니다.
/*backtest start: 2023-06-08 00:00:00 end: 2024-06-13 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("EvilRed Trading Indicator Trend Filter", overlay=true) // Parameters Definition fastLength = input(9, title="Fast EMA Length") slowLength = input(21, title="Slow EMA Length") trendFilterLength = input(200, title="Trend Filter EMA Length") // Moving Averages Calculation fastEMA = ta.ema(close, fastLength) slowEMA = ta.ema(close, slowLength) trendEMA = ta.ema(close, trendFilterLength) // Volatility Calculation volatility = ta.stdev(close, 20) // Add Fukuiz Trend Indicator fukuizTrend = ta.ema(close, 14) fukuizColor = fukuizTrend > fukuizTrend[1] ? color.green : color.red plot(fukuizTrend, color=fukuizColor, title="Fukuiz Trend") // Plotting Moving Averages plot(fastEMA, color=color.blue, title="Fast EMA") plot(slowEMA, color=color.red, title="Slow EMA") plot(trendEMA, color=color.orange, title="Trend Filter") // Plotting Buy and Sell Signals buySignal = ta.crossover(fastEMA, slowEMA) and fastEMA > slowEMA and close > trendEMA sellSignal = ta.crossunder(fastEMA, slowEMA) and fastEMA < slowEMA and close < trendEMA // Entry and Exit Conditions if (strategy.position_size > 0 and fukuizColor == color.red) strategy.close("Long", comment="Fukuiz Trend is Red") if (strategy.position_size < 0 and fukuizColor == color.green) strategy.close("Short", comment="Fukuiz Trend is Green") if (buySignal) strategy.entry("Long", strategy.long) if (sellSignal) strategy.entry("Short", strategy.short) plotshape(buySignal, style=shape.triangleup, location=location.belowbar, color=color.green, size=size.small, title="Buy Signal") plotshape(sellSignal, style=shape.triangledown, location=location.abovebar, color=color.red, size=size.small, title="Sell Signal")