Dear Mladen,
Can you add alerts to this indicator? or is there already a version with alerts, if so then can you link it to me. I couldn't find it.
Re: MACD indicators for MT4
132Soulmysoul, have this version with alerts and mtf, it's basically the same except with the 33 price options and 8 moving average options for the macd.soulmysoul wrote: Mon Aug 14, 2017 2:31 am Dear Mladen,
Can you add alerts to this indicator? or is there already a version with alerts, if so then can you link it to me. I couldn't find it.
Re: MACD indicators for MT4
133Dear coders,
please help me to add ForSymbol and unique ID for this indicator thank you for your help
please help me to add ForSymbol and unique ID for this indicator thank you for your help
Re: MACD indicators for MT4
134Change indicator name from this :bobzahra wrote: Mon Aug 14, 2017 11:12 am Dear coders,
please help me to add ForSymbol and unique ID for this indicator
all_macd_v1.0_nmc.mq4
thank you for your help
Code: Select all
#define indicatorName "All MACD"
Code: Select all
extern string indicatorName = "All MACD";
Re: MACD indicators for MT4
137Dear mods, can you point me the link to the following indicator:
ZeroLag Tema MACD - mtf + lines 2 (alerts + arrows)
ZeroLag Tema MACD - mtf + lines 2 (alerts + arrows)
Re: MACD indicators for MT4
138Think it's in the alerts section but it should be here toocamisa wrote: Tue Aug 22, 2017 8:25 pm Dear mods, can you point me the link to the following indicator:
ZeroLag Tema MACD - mtf + lines 2 (alerts + arrows)

Re: MACD indicators for MT4
139Some of you have probably been using in some period of trading the indicator called "future macd"
I have seen a couple of versions, but frankly, they all had issues that are not justified. Like, fixed price, signal method and some more things. Here is a version (and it is, as it can be seen from the code, as simple as it gets). It is trying to "predict" (estimate) what will the macd look like up to FastEma period bars into the future
___________________________________
PS: be advised that the future bars are going to repaint/recalculate - there is no way to prevent that
PPS: no, no need for more buffers, and yes - those two lines of code are all that is needed to calculate this version of future macd
I have seen a couple of versions, but frankly, they all had issues that are not justified. Like, fixed price, signal method and some more things. Here is a version (and it is, as it can be seen from the code, as simple as it gets). It is trying to "predict" (estimate) what will the macd look like up to FastEma period bars into the future
___________________________________
PS: be advised that the future bars are going to repaint/recalculate - there is no way to prevent that
PPS: no, no need for more buffers, and yes - those two lines of code are all that is needed to calculate this version of future macd

Re: MACD indicators for MT4
140And here is this version
While the above version is using the built in ema for calculation, this version is using my type of calculation. And since the built in ema is adding a new instance of ema for each new period used, it is actually a sort of a macd of nnn emas. This version is a completely different story. You might call it an "adaptive indicator to the extremes.
Both are having exactly the same values up to the current bar and both are going to repaint/recalculate the future values. Except that this version is having the "future" values of macd much closer to any future macd value (that will be obvious even after a couple of minutes of using them).
But since both are going to repaint do not use any of the versions for "future" signals (the signals marked by the colored zone in this indicator). The first version was posted to show how it is done. This version is posted to try to make the "future" prediction a bit less random. Enjoy
While the above version is using the built in ema for calculation, this version is using my type of calculation. And since the built in ema is adding a new instance of ema for each new period used, it is actually a sort of a macd of nnn emas. This version is a completely different story. You might call it an "adaptive indicator to the extremes.
Both are having exactly the same values up to the current bar and both are going to repaint/recalculate the future values. Except that this version is having the "future" values of macd much closer to any future macd value (that will be obvious even after a couple of minutes of using them).
But since both are going to repaint do not use any of the versions for "future" signals (the signals marked by the colored zone in this indicator). The first version was posted to show how it is done. This version is posted to try to make the "future" prediction a bit less random. Enjoy
- These users thanked the author mladen for the post (total 4):
- Patrick K, Jedidiah, Chickenspicy, talaate