In the last few hours I tried several MACD codes and indicators using the forum but none of them seem to comply with the IG MACD values In the IG charts they show (MACD line minus Signal), but I can’t recreate these values in the code What I need is just to know if the histogram is positive or negative (binary parameter) this is my last unsuccessful try. GRAPH myMACDline-myMACDline[1] myMACDline = MACDLine[12,26,9](close) This is of course the same: myMACD=exponentialaverage[12](close)-exponentialaverage[26](close) any hints?