거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
3081
평가:
(26)
게시됨:
2017.01.18 09:01
업데이트됨:
2023.03.29 13:45
Imp_XMA.mq5 (7.35 KB) 조회
\MQL5\Include\
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Real author:

paladin80

Moving average wing averaging of the linear combination of the input price timeseries.

The moving average, just like any other indicator, can be calculated only based on 7 price constants. This modification of the moving average allows to calculate the indicator based on any combination of the 4 main price types (close, open, high, low). For this purpose, four coefficients are used as the indicator's input parameters:

  1. Close_coef - weight coefficient of CLOSE price for calculation of the individual price;
  2. Open_coef - weight coefficient of OPEN price for calculation of the individual price;
  3. High_coef - weight coefficient of HIGH price for calculation of the individual price;
  4. Low_coef - weight coefficient of LOW price for calculation of the individual price.

Resulting formula of the weight constant:

Price = (Close_coef*CLOSE + Open_coef *OPEN + High_coef*HIGH + Low_coef*LOW) / (Close_coef + Open_coef + Open_coef + High_coef + Low_coef );

The indicator uses SmoothAlgorithms.mqh library classes (copy it to <terminal_data_folder>\MQL5\Include). The use of the classes was thoroughly described in the article "Averaging Price Series for Intermediate Calculations Without Using Additional Buffers".

The original indicator was developed in the MQL4 language and published in the CodeBase on 11.11.2012.

Fig1. The Imp_XMA indicator

Fig1. The Imp_XMA indicator

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

DownloadHistory DownloadHistory

Symbol for downloading the history data for the current symbol with indication of progress.

YURAZ_RSAXEL Script draws the Axel Rudolph levels YURAZ_RSAXEL Script draws the Axel Rudolph levels

Script draws the Axel Rudolph levels

BoDi BoDi

The Standard Deviation indicator implemented in the form of a color histogram.

Switching charts Switching charts

The script switches all opened charts at a certain interval. It is also possible to display only the charts of certain symbols.