PHP 8.3.4 Released!

trader_stochf

(PECL trader >= 0.2.0)

trader_stochfStochastic Fast

Descrição

trader_stochf(
    array $high,
    array $low,
    array $close,
    int $fastK_Period = ?,
    int $fastD_Period = ?,
    int $fastD_MAType = ?
): array

Parâmetros

high

Preço alto, array de valores reais.

low

Preço baixo, array de valores reais.

close

Preço de fechamento, array de valores reais.

fastK_Period

Período de tempo para a construção da linha Fast-K. Intervalo válido de 1 a 100000.

fastD_Period

Suavização na construção da linha Fast-D. Intervalo válido de 1 a 100000, geralmente 3.

fastD_MAType

Tipo de Média Móvel para o Fast-D. As constantes TRADER_MA_TYPE_* devem ser usadas.

Valor Retornado

Returns an array with calculated data or false on failure.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top