Unsupported ta.macd Fast Length
Category: momentum
A standard Moving Average Convergence Divergence (MACD) implementation that specifically tests the behavior of using a floating-point number (1.5) for the fast length parameter instead of the standard integer.
Formula
macdLine = EMA(close, 1.5) - EMA(close, 26) \nsignalLine = EMA(macdLine, 9) \nhistLine = macdLine - signalLine
See signal primitives and every published strategy that uses Unsupported ta.macd Fast Length on WOBR StrategyVerse.