Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

trader_t3(3) [php man page]

TRADER_T3(3)								 1							      TRADER_T3(3)

trader_t3 - Triple Exponential Moving Average (T3)

SYNOPSIS
array trader_t3 (array $real, [integer $timePeriod], [float $vFactor]) DESCRIPTION
PARAMETERS
o $real - Array of real values. o $timePeriod - Number of period. Valid range from 2 to 100000. o $vFactor - Volume Factor. Valid range from 1 to 0. RETURN VALUES
Returns an array with calculated data or false on failure. PHP Documentation Group TRADER_T3(3)

Check Out this Related Man Page

TRADER_SAREXT(3)							 1							  TRADER_SAREXT(3)

trader_sarext - Parabolic SAR - Extended

SYNOPSIS
array trader_sarext (array $high, array $low, [float $startValue], [float $offsetOnReverse], [float $accelerationInitLong], [float $accelerationLong], [float $accelerationMaxLong], [float $accelerationInitShort], [float $accelerationShort], [float $acceleration- MaxShort]) DESCRIPTION
PARAMETERS
o $high - High price, array of real values. o $low - Low price, array of real values. o $startValue - Start value and direction. 0 for Auto, >0 for Long, <0 for Short. Valid range from TRADER_REAL_MIN to TRADER_REAL_MAX. o $offsetOnReverse - Percent offset added/removed to initial stop on short/long reversal. Valid range from 0 to TRADER_REAL_MAX. o $accelerationInitLong - Acceleration Factor initial value for the Long direction. Valid range from 0 to TRADER_REAL_MAX. o $accelerationLong - Acceleration Factor for the Long direction. Valid range from 0 to TRADER_REAL_MAX. o $accelerationMaxLong - Acceleration Factor maximum value for the Long direction. Valid range from 0 to TRADER_REAL_MAX. o $accelerationInitShort - Acceleration Factor initial value for the Short direction. Valid range from 0 to TRADER_REAL_MAX. o $accelerationShort - Acceleration Factor for the Short direction. Valid range from 0 to TRADER_REAL_MAX. o $accelerationMaxShort - Acceleration Factor maximum value for the Short direction. Valid range from 0 to TRADER_REAL_MAX. RETURN VALUES
Returns an array with calculated data or false on failure. PHP Documentation Group TRADER_SAREXT(3)
Man Page