| 1 | <?php |
||
| 10 | class BollingerBandsIndicator implements Indicator |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Invoke the indicator. |
||
| 14 | * |
||
| 15 | * @param Collection $ohlcv |
||
| 16 | * @param int $timePeriod |
||
| 17 | * @param float $nbDevUp |
||
| 18 | * @param float $nbDevDn |
||
| 19 | * @param int $mAType |
||
| 20 | * |
||
| 21 | * @return int |
||
| 22 | * |
||
| 23 | * @throws Throwable |
||
| 24 | */ |
||
| 25 | public function __invoke( |
||
| 56 | } |
||
| 57 |