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

Real Author:

GurievEugen

Two-Line MACD. This indicator is available by default in a great deal of trading platforms. But it cannot be found in Metatrader 5.

This indicator was first implemented in MQL4 and published in at Code Base 02.07.2012.

The indicator uses classes of the SmoothAlgorithms.mqh library (to be copied into terminal_data_directory\MQL5\Include). A detailed description of the use of the classes was given in the article "Averaging Price Series for Intermediate Calculations Without Using Additional Buffers".

Input parameters:

//+-----------------------------------+
//| Indicator input parameters        |
//+-----------------------------------+
input Smooth_Method XMA_Method=MODE_T3;      // Histogram smoothing method
input int Fast_XMA = 12;                     // Fast moving average period
input int Slow_XMA = 26;                     // Slow moving average period
input int XPhase= 100;                       // Moving averages smoothing parameter
input Smooth_Method Signal_Method=MODE_JJMA; // Signal line smoothing method
input int Signal_XMA=9;                      // Signal line period 
input int Signal_Phase=100;                  // Signal line parameter
input int AppliedPrice=PRICE_CLOSE_;         // Price constant

Illustration:

Fig.1 GMACD Indicator

Fig.1 GXMACD Indicator

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

IncMatrix IncMatrix

Class for working with matrices.

Widescreenshooter Widescreenshooter

Script to create wide screenshots.

ResultRetcodeDescription ResultRetcodeDescription

The function that decrypts the code of the trade operation result for the functions OrderSend() and OrderCheck().

GetLotForOpeningPos GetLotForOpeningPos

The function that calculates the lot size depending on the amount of money in the deposit currency being used.