Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Join our fan page
You liked the script? Try it in the MetaTrader 5 terminal
MACD Cleaner - expert for MetaTrader 5
- Published by:
- Vladimir Karputov
- Views:
- 6445
- Rating:
- Published:
- 2019.01.02 14:27
- Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
Idea by Artem Titarenko
mq5 code author - barabashkakvn
The Expert Advisor trades using the iMACD (Moving Average Convergence/Divergence, MACD) indicator signals.
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 only operates when a new bar appears (this applies both to trailing and signal generation).
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/23325
SetColorFiboLevels
The script creates the Fibonacci levels graphic object with a large number of settings.
Float_Pivot_Smoothed_Digit_SystemThe indicator implements a breakthrough system using the Float_Pivot_Smoothed_Digit channel.