MACD MA Price – indicator MetaTrader 4

MACD MA Price - indicator for MetaTrader 4
The standard MACD indicator is calculated by formulas: MACD = EMA(CLOSE, 12) – EMA(CLOSE, 26) SIGNAL = SMA(MACD, 9), where main line (MACD) is drawn on the exponential moving average (EMA), a signal line (SIGNAL) on the simple moving average (SMA), and applied price is limited to the closing price (CLOSE). The proposed indicator MACD … Read more

MACD Elder Impulse Max – indicator MetaTrader 5

MACD Elder Impulse Max
Real author: MaxAgeNT MACD histogram with bars coloring according to Elder Impulse System. This indicator was first implemented in MQL4 and published in Code Base 16.05.2012 (in Russian). The indicator uses SmoothAlgorithms.mqh library classes (must be copied to the terminal_data_folder\MQL5\Include). The use of the classes was thoroughly described in the article “Averaging Price Series for … Read more

The MACD with the definition of price extremums – indicator MetaTrader 5

Fig.1 The MACD_Xtr indicator.
The real author: Svinozavr From the usual MACD type the _MACD_Xtr indicator differ in adaptive overbought/oversold zones (red and green lines), and also bars color in histogram in the corresponding colors when entering MACD in these zones. Usually to adapt the indicator as a regulator, the indicator itself is used. If, for example, the scope … Read more

The class to draw MACD using the ring buffer – indicator MetaTrader 5

The class to draw MACD using the ring buffer - indicator for MetaTrader 5
Description The CMACDOnRingBuffer class is designed for calculation of the technical indicator Moving Average Convergence/Divergence (Moving Average Convergence/Divergence, MACD) using the algorithm of the ring buffer.  Declaration class CMACDOnRingBuffer Title #include <IncOnRingBuffer\CMACDOnRingBuffer.mqh> File of the CMACDOnRingBuffer.mqh class should be placed in the IncOnRingBuffer folder that need to be established in MQL5\Include\. Two files with the examples used by … Read more

MACDWaterlineCrossExpectator, the effectiveness of a MACD system – EA MetaTrader 5

EURUSD balance
Real author: Jordi Bassagañas Galisteo The problem is measuring the real power of this traditional system based exclusively on MACD. The EA’s rules are as follows: Buy when the MACD signal crosses above the waterline line. Sell when the MACD signal crosses below the waterline line. There is also a money management strategy that seeks … Read more