MACD Color Histogram – indicator for MetaTrader 4
5.0 02 Find and signal divergence. To color histogram Download here: https://www.mediafire.com/file/qzcxtx5ftaadzcg/MACD_Color_Histogram_indicator_for_MetaTrader_4.mq4/file Or code Mql4 here //+——————————————————————+//| MACD Colored Histogram.mq4 |//| Copyright 2018, MetaQuotes Software Corp. |//| https://www.mql5.com |//+——————————————————————+#property copyright “Copyright 2018, MetaQuotes Software Corp.”#property link “https://www.mql5.com”#property version “1.00”#property strict #property indicator_separate_window#property indicator_buffers 4#property indicator_color1 Lime#property indicator_color2 Red#property indicator_color3 SlateGray#property indicator_color4 Magenta #property indicator_width1 2#property indicator_width2 2#property indicator_width3 2#property indicator_width4 1 #property indicator_level1 0#property indicator_levelcolor Silver extern int fast_ema_period=12;extern int slow_ema_period=26;extern int signal_period=9; double UpBuffer[];double DownBuffer[];double ZeroBuffer[];double SigMABuffer[];//+——————————————————————+//| Custom indicator initialization function |//+——————————————————————+int OnInit() {//— indicator buffers mapping Read More →