이 전략은 1995년에 출판된 윌리엄 블라우의 책?? 모멘텀, 디렉션 앤 디버전스?? 에서 설명된 기술 지표?? 모멘텀 미인 디버전스 인덱스?? 에 기초하고 있습니다. 이 지표는 가격 동력, 가격 방향 및 가격 디버전스의 세 가지 주요 요소에 초점을 맞추고 가격과 동력 사이의 관계를 깊이 분석합니다.
이 전략은 가격 추세와 브레이크아웃 포인트를 결정하기 위해 모멘텀 평균 오차 인덱스를 사용합니다. 먼저 가격의 EMA 라인을 계산하고, 그 다음 이 EMA 라인에서 가격의 오차를 계산합니다. 이 오차는 EMA에 의해 두 배 평평화되어 최종 모멘텀 평균 오차 인덱스 곡선을 얻을 수 있습니다. 이 곡선이 자신의 신호 라인의 위 또는 아래를 넘을 때 거래 신호가 생성됩니다. 구체적으로 계산 과정은 다음과 같습니다.
포시그 신호에 따라 긴 또는 짧은 포지션을 입력합니다.
이 전략의 장점은 다음과 같습니다.
이 전략은 또한 몇 가지 잠재적인 위험을 가지고 있습니다.
이러한 위험은 매개 변수를 최적화하고, 필터링 기준을 설정하고, 트렌드 판단 모듈을 도입함으로써 감소할 수 있습니다.
이 전략의 최적화 방향은 다음과 같습니다.
이 전략은 동력 평균 오차 지수를 기반으로 가격-동력 관계에 기반하여 가격 반전 지점을 캡처합니다. 그 매개 변수화 및 최적화 가능한 디자인은 다른 주기와 품종에 적응 할 수 있습니다. 그러나 일부 잘못된 신호 및 역행 거래 위험도 있습니다. 매개 변수 및 모델을 더 이상 최적화하고 트렌드 판단 등을 통합하면 성능을 향상시킬 수 있습니다.
/*backtest start: 2023-12-17 00:00:00 end: 2024-01-16 00:00:00 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version = 2 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 12/12/2016 // This is one of the techniques described by William Blau in his book "Momentum, // Direction and Divergence" (1995). If you like to learn more, we advise you to // read this book. His book focuses on three key aspects of trading: momentum, // direction and divergence. Blau, who was an electrical engineer before becoming // a trader, thoroughly examines the relationship between price and momentum in // step-by-step examples. From this grounding, he then looks at the deficiencies // in other oscillators and introduces some innovative techniques, including a // fresh twist on Stochastics. On directional issues, he analyzes the intricacies // of ADX and offers a unique approach to help define trending and non-trending periods. // // You can change long to short in the Input Settings // Please, use it only for learning or paper trading. Do not for real trading. //////////////////////////////////////////////////////////// strategy(title="Ergotic MDI (Mean Deviation Indicator) Bactest") r = input(32, minval=1) s = input(5, minval=1) u = input(5, minval=1) SmthLen = input(3, minval=1) reverse = input(false, title="Trade reverse") hline(0, color=blue, linestyle=line) xEMA = ema(close, r) xEMA_S = close - xEMA xEMA_U = ema(ema(xEMA_S, s), u) xSignal = ema(xEMA_U, u) pos = iff(xEMA_U > xSignal, 1, iff(xEMA_U < xSignal, -1, nz(pos[1], 0))) possig = iff(reverse and pos == 1, -1, iff(reverse and pos == -1, 1, pos)) if (possig == 1) strategy.entry("Long", strategy.long) if (possig == -1) strategy.entry("Short", strategy.short) barcolor(possig == -1 ? red: possig == 1 ? green : blue ) plot(xEMA_U, color=green, title="Ergotic MDI") plot(xSignal, color=red, title="SigLin")