Re: MACD indicators for MT4
Posted: Fri Mar 07, 2025 10:08 am
I'm getting this but got to keep refreshing the zones version.
I'm getting this but got to keep refreshing the zones version.
Okay did a 4-color version, the only version I have the histogram for some reason was done as an object version, which I am not sure but think it is causing the colors to become different, this version I did is using the color scheme they were trying in the object version but not using objects and the results are different. The histograms I usually do is when the macd is <> 0 that is the main trend and when macd <> it's signal that designates a strong or weak trend, the zones version is using the opposite.
if (macd[i]>signal[i] && macd[i]> 0) colors[i] = 1; // color up
if (macd[i]>signal[i] && macd[i]< 0) colors[i] = 2; // color neutral up
if (macd[i]<signal[i] && macd[i]< 0) colors[i] = 3; // color down
if (macd[i]<signal[i] && macd[i]> 0) colors[i] = 4; // color neutral down
switch (clr)
{
case 3 : ObjectSet(name,OBJPROP_COLOR,ColorDown); break;
case 4 : ObjectSet(name,OBJPROP_COLOR,ColorNeutralDown); break;
case 1 : ObjectSet(name,OBJPROP_COLOR,ColorUp); break;
default : ObjectSet(name,OBJPROP_COLOR,ColorNeutralUp); break;
}
Hello, made this version.global wrote: Fri Mar 07, 2025 10:51 pm Hi All,
I'm looking for the nonlag ma macd for MT4 but I'm only finding the MT5 version linked here: attach/file/3234038. I searched the forum but couldn't find it, so if it's available, then I'll really appreciate it if someone can point me to where it can be found. Thanks.
nlma.png
Thank you very much Mr. Tools. Much appreciated.
Maybe herealmostprofitable101 wrote: Thu Mar 13, 2025 4:14 am does anybody know where i could find a macd with signal color change? i have this 1 but the code is de-compiled trash![]()
Hello, "E-Averages" is Kvak's nickname he uses for his version of the "All Averages" (Moving Averages Filters). Originally created as an add-on for indicators which conveniently allows the analyst to select from a list of Moving Averages types within the indicator, it's referred to as the "All Averages" by Mrtools and Mladen. Moderator Kvak has adopted this feature and will include it into his indicators as an enhancement (when requested) as well.almostprofitable101 wrote: Thu Mar 13, 2025 10:57 am i looked at atleast 40 pages i did see that 1 but wasnt sure what the e averages was![]()
Hello Mr Kvak,kvak wrote: Tue Dec 03, 2024 7:05 pm I don't test indicator what you posted, but if you want MACD candles in zero cross, I have this....