bollinger-bands
Advanced tools
Comparing version 2.0.2 to 3.0.0
@@ -193,3 +193,3 @@ 'use strict'; | ||
upper: add$1(avg, timesSd), | ||
mid: avg, | ||
middle: avg, | ||
lower: sub$1(avg, timesSd) | ||
@@ -196,0 +196,0 @@ }; |
{ | ||
"name": "bollinger-bands", | ||
"version": "2.0.2", | ||
"version": "3.0.0", | ||
"description": "Fintach math utility to calculate bollinger bands.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -53,3 +53,3 @@ [![Build Status](https://travis-ci.org/kaelzhang/bollinger-bands.svg?branch=master)](https://travis-ci.org/kaelzhang/bollinger-bands) | ||
- **upper** `Number` the value of the upper band | ||
- **mid** `Number` the value middle band (moving average) | ||
- **middle** `Number` the value middle band (moving average) | ||
- **lower** `Number` the value of the lower band | ||
@@ -56,0 +56,0 @@ |
@@ -26,5 +26,5 @@ import deviation from 's-deviation' | ||
upper: add(avg, timesSd), | ||
mid: avg, | ||
middle: avg, | ||
lower: sub(avg, timesSd) | ||
} | ||
} |
7875