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

CMAOnArray class is designed for Moving Average calculation on indicator buffer's data.

Usage:

Init() method with the following parameters is called in the OnInit() function of the indicator:

Solve() method with the following parameters is called in the OnCalculate() function of the indicator:

  • const int aRatesTotal - rates_total variable from the OnCalculate() function parameters;
  • const int aPrevCalc - prev_calculated variable from the OnCalculate() function parameters;
  • double aData[] - buffer with the data, according to which MA is calculated;
  • double aMA[]  - the buffer with calculated МА.
Additional methods:
  • int BarsRequired() - returns the minimal number of bars necessary for calculation;
  • string Name() - returns the line with the indicator name;
  • string NameMethod() - returns the line with the name of the used smoothing method.

Test_MAOnArray.mq5 is a sample indicator showing CMAOnArray class application. IncMAOnArray file must be located in MQL5\Include\IncOnArray of the terminal data folder (IncOnArray folder must be created).

The Moving Average Technical Indicator shows the mean instrument price value for a certain period of time. When one calculates the moving average, one averages out the instrument price for this time period. As the price changes, its moving average either increases, or decreases.

Example of use of CMAOnArray class

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

VGridLine Monthly VGridLine Monthly

Vertical time grid with one month step.

JFatl HTF Baby JFatl HTF Baby

The hybrid of digital and analog filters that displays larger timeframe values at a smaller one in a minimized way.

Multi RSI Multi RSI

Eight RSI (Relative Strength Index) technical indicators in one chart.

VGridLine Weekly VGridLine Weekly

Vertical time grid with one week step.