Mira cómo descargar robots gratis
¡Búscanos en Twitter!
Pon "Me gusta" y sigue las noticias
¿Es interesante este script?
Deje un enlace a él, ¡qué los demás también lo valoren!
¿Le ha gustado el script?
Evalúe su trabajo en el terminal MetaTrader 5
Indicadores

Traditional MACD with Momentum indicador and alarms - indicador para MetaTrader 4

Visualizaciones:
36918
Ranking:
(31)
Publicado:
2015.10.29 10:31
Actualizado:
2016.11.22 07:32
macd-neskk.mq4 (7.71 KB) ver
¿Necesita un robot o indicador basado en este código? Solicítelo en la bolsa freelance Pasar a la bolsa

Real author:

João Nunes @ neskk.com - 2015

Traditional MACD indicator with a Momentum indicator and alarms. Allows customization of most of the parameters without having to dive into code.

This is my MACD indicator, it has well structured code so even beginners can understand it and perhaps modify it. I've grabbed the Momentum idea from another indicator: https://www.mql5.com/en/code/11511.

I wanted a traditional MACD indicator where:

  • MACD line = FastEMA - SlowEMA
  • Signal = 9-day EMA of MACD
  • Histogram = MACD - Signal

The Momentum line is calculated by comparing two MACD values with 10 bars in between. Then Momentum is passed into a Moving Average to make it smoother.

Since MACD 0-crossovers and Momentum reversals can be important signals for traders, I've incorporated two alarms, one for each of the signals mentioned.

Note: These 'alarms' actually are being printed on Experts tab, if you want alerts, just uncomment the respective lines in the code (instead of Print() function use Alert()).

I wanted to make this indicator user friendly and customizable, so I've included a lot of parameters:

  • BarsToProcess — Self explanatory. Note: This affects the ability for the graph to render different time frames, at 1000 you can go up to 1D!
  • AppliedPrice — Price used to calculate MACD.
  • PeriodFastEMA — Period used to calculate fast moving average.
  • PeriodSlowEMA — Period used to calculate slow moving average.
  • PeriodSignal — Period analyzed to calculate the signal line.
  • SignalMA — Moving average method used to calculate the signal line.
  • DeltaMomentum — Distance between the two points analyzed to calculate the Momentum.
  • PeriodMomentum — Period analyzed to compute the moving average of the Momentum (Momentum smoothing).
  • MomentumMA — Moving average method used to calculate the smoothed Momentum.
  • AlarmZeroCrossover — Enables/Disables the alarm for MACD 0-crossovers.
  • AlarmMomentumReverse — Enables/Disables the alarm for Momentum reversals.

neskk-macd-graph

AutoSLTP AutoSLTP

This EA will help you to set Stop Loss and Take Profit.

Trend_Catcher Trend_Catcher

The EA looks for trend using three MAs (period 200, 50, 25 or other) and opens orders using the Parabolic SAR indicator. There is martingale in an Expert Advisor, the lot is calculated in percents from a deposit depending on Stop Loss.

Candle SnR Candle SnR

Indicator S&R based on OHCL candles.

FibonacciPivot FibonacciPivot

Fibonacci indicator drawing levels on previous day.