From 0c6ad6c93983f1a080440e8c2b5e0e7a7d72d2a8 Mon Sep 17 00:00:00 2001 From: Joshua Date: Mon, 25 Jul 2016 09:00:36 -0600 Subject: [PATCH] Corrected missing/incorrect function references. --- source/Trader.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/Trader.php b/source/Trader.php index 341b8bc..3db88de 100644 --- a/source/Trader.php +++ b/source/Trader.php @@ -290,7 +290,7 @@ public static function beta(array $real0, array $real1, integer $timePeriod = nu */ public static function bop(array $open, array $high, array $low, array $close): array { - + return trader_bop($open, $high, $low, $close); } /** @@ -305,7 +305,7 @@ public static function bop(array $open, array $high, array $low, array $close): */ public static function cci(array $high, array $low, array $close, integer $timePeriod = null): array { - + return trader_cci($high, $low, $close, $timePeriod); } /** @@ -1687,7 +1687,7 @@ public static function max(array $real, integer $timePeriod = null): array */ public static function maxindex(array $real, integer $timePeriod = null): array { - return trader_max($real, $timePeriod); + return trader_maxindex($real, $timePeriod); } /**