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, usage in published strategies and more on WOBR StrategyVerse.