Idea by Artem Titarenko
mq5 code author - barabashkakvn
The MACD Cleaner is an Expert Advisor designed to harness the power of the iMACD (Moving Average Convergence/Divergence) indicator signals, helping you make informed trading decisions.
Signal Generation Rules:
if(macd_main[3]>=macd_main[2] && macd_main[2]>=macd_main[1])
m_need_open_buy=true;
if(macd_main[3]<=macd_main[2] && macd_main[2]<=macd_main[1])
m_need_open_sell=true;
The EA kicks into action whenever a new bar appears, which is essential for both trailing and signal generation.

Comments 0