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

EMA_With_Trend_Adjustment - MetaTrader 5용 지표

조회수:
3351
평가:
(5)
게시됨:
2018.07.13 15:33
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

EMA_With_Trend_Adjustment - a moving average with exponential smoothing and correction by its trend component.

The indicator has four configured parameters:

  • Alpha - coefficient to calculate EMA;
  • Beta - coefficient to calculate the trend component;
  • Use Trend Adjustment - whether to use correction by trend (Yes/No);
  • Applied price - price used for calculations.

Calculations:

EMATA = Alpha * Price + (1-Alpha) * (PrevEMATA + Trend)
Trend = Beta * (EMATA - PrevEMATA) + (1 - Beta) * PrevTrend

where:

Price - SMA(1, Applied price)

Fig 1. Trend component is not used.

Fig 1. Trend component is not used.

Fig. 2. Trend component is used.

Fig. 2. Trend component is used.

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/21232

DI_Cluster DI_Cluster

Indicator DI_Cluster represents three indicators ADX with different parameters. Unlike standard ADX, the threshold levels of DI Cluster are not constant, but are determined by the intersections of three indicator lines. You can choose any of the three lines of standard ADX to be displayed: ADX trend strength lines themselves and line +DI or -DI.

CI CI

Indicator CI (Congestion Identifier). It displays within how many bars before the current one the price was within the channel formed by the Close price of the current bar +/- Delta in points. It also displays the counter value threshold level and the marks, in which the counter is above or below that level.

EURX EURX

Indicator EURX displays index EUR.

FIR FIR

Indicator FIR is a symmetrically weighted filter (Finite Impulse Response Filter).