trader_aroonosc

(PECL trader >= 0.2.0)

trader_aroonoscAroon Oscillator

Описание

array trader_aroonosc ( array $high , array $low [, integer $timePeriod ] )

Список параметров

high

Высокая цена, массив реальных значений.

low

Низкая цена, массив реальных значений.

timePeriod

Номер периода. Допустимы значения от 2 до 100000.

Возвращаемые значения

Returns an array with calculated data or false on failure.

Коментарии

<?php
/*
The Aroon Oscillator uses the Aroon Indicator to gauge the strength of a trend and the likelihood that it will continue.
*/

$highs = array(118.99119.14120.5115.23115.93118.829116112.2110.88110.19112.86112.11110.25112.44);
$lows = array(112.68115.26112.5110112.8113.61112.04108.71106.09103.1109.16106.77105107.67);

$time_period 5;                 

var_dump(trader_aroonosc($highs$lows$time_period));
/*
array(9) {
  [5]=>
  float(-20)
  [6]=>
  float(-20)
  [7]=>
  float(-100)
  [8]=>
  float(-60)
  [9]=>
  float(-80)
  [10]=>
  float(-80)
  [11]=>
  float(-60)
  [12]=>
  float(20)
  [13]=>
  float(20)
}
*/
2021-02-15 06:48:27
http://php5.kiev.ua/manual/ru/function.trader-aroonosc.html

    Поддержать сайт на родительском проекте КГБ