거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

Directional smoothed momentum - MetaTrader 5용 지표

조회수:
6348
평가:
(20)
게시됨:
2018.10.18 11:16
업데이트됨:
2019.01.30 08:02
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Calculation

The calculating method is deviation when compared to usual momentum calculation. Momentum is calculated as a sum of absolute differences of current price to the price 1 period ago and then compared to the ratio of current price to the price several (N) periods ago.

ABS MOMENTUM = SUM(ABS(CLOSE(i)-CLOSE(i-1))

MOMENTUM = CLOSE(i)>CLOSE(i-N) ? ABS MOMENTUM : - ABS MOMENTUM

where:

  • CLOSE(i) — is the closing price of the current bar;
  • CLOSE(i-1) — is the closing bar price 1 periods ago.
  • CLOSE(i-N) — is the closing bar price N periods ago.

This version :

  • The indicator can use filtered price for calculation now - that way, if the slope of the momentum is used for decisions the number of signals (and fake signals) is lessened significantly. The lag added is acceptable (that can easily be checked by comparing this version to the built in momentum using same period)
  • For the above purpose the indicator can use one of the 4 averages types :
      • simple moving average (SMA)
      • exponential moving average (EMA)
      • smoothed moving average (SMMA)
      • linear weighted moving average (LWMA)

PS: the "big picture" comparison of this momentum and the regular momentum and the comparison of the decision points

Volatility adjusted WPR Volatility adjusted WPR

Volatility adjusted WPR (Williams Percent Range)

Volatility adjusted RSI Volatility adjusted RSI

Volatility adjusted RSI

Hull levels Hull levels

Hull levels

Rsi (var) - Hull Rsi (var) - Hull

RSi (var) - Hull average