Package Exports
- moving-average
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (moving-average) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
moving-average
Exponential Moving Average for Node.js.
Also suports Moving Variance.
Install
$ npm install moving-average
Use
var timeInterval = 5 * 60 * 1000; // 5 minutes
var MA = require('moving-average');
var ma = MA(timeInterval);
setInterval(function() {
ma.push(Date.now(), Math.random() * 500);
console.log('moving average now is', ma.movingAverage());
console.log('moving variance now is', ma.variance());
});
License
MIT