update page now

trader_macd

(PECL trader >= 0.2.0)

trader_macdMoving Average Convergence/Divergence

Description

trader_macd(
    array $real,
    int $fastPeriod = ?,
    int $slowPeriod = ?,
    int $signalPeriod = ?
): array

Parameters

real

Array of real values.

fastPeriod

Number of period for the fast MA. Valid range from 2 to 100000.

slowPeriod

Number of period for the slow MA. Valid range from 2 to 100000.

signalPeriod

Smoothing for the signal line (nb of period). Valid range from 1 to 100000.

Return Values

Returns an array with calculated data or false on failure.

add a note

User Contributed Notes 2 notes

up
0
timrdearborn at gmail dot com
2 days ago
While having as many values as possible returns more "accurate" MACD values, the minimum number of values needed to return a set of values is the slow length + signal length - 1.  

For example, using the traditional MACD lengths of 12, 26, and 9, one would need a minimum of 34 values (26 + 9 - 1) to return MACD values.
up
0
koenig at globaltown dot de
11 years ago
Return value of this function is an array of arrays :

index [0]: MACD values
index [1]: Signal values
index [2]: Divergence values
To Top