Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
MACD Raw values

Is there a way to get the MACD function to return just the MACD values and not the histogram. I am trying to get the signal line and the MACD values seperately before the histogram subtracts them.

2 responses

talib MACD is multi-output function .
It returns macd, signal and hist.
You may use any or all of them.

Thank you!