
Research
Malicious Go “crypto” Module Steals Passwords and Deploys Rekoobe Backdoor
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.
exponential-moving-average
Advanced tools
Calculate an exponential moving average from an array of numbers.
Calculate an exponential moving average from an array of numbers.
Install with npm:
$ npm install --save exponential-moving-average
var ema = require('exponential-moving-average');
var arr = [
'22.27',
'22.19',
'22.08',
'22.17',
'22.18',
'22.13',
'22.23',
'22.43',
'22.24',
'22.29',
'22.15',
'22.39',
'22.38',
'22.61',
'23.36',
'24.05',
'23.75',
'23.83',
'23.95',
'23.63',
'23.82',
'23.87',
'23.65',
'23.19',
'23.10',
'23.33',
'22.68',
'23.10',
'22.40',
'22.17'
];
// calculate ema over 10 days
console.log(ema(arr, 10));
Results in:
[
'22.22',
'22.21',
'22.24',
'22.27',
'22.33',
'22.52',
'22.80',
'22.97',
'23.13',
'23.28',
'23.34',
'23.43',
'23.51',
'23.53',
'23.47',
'23.40',
'23.39',
'23.26',
'23.23',
'23.08',
'22.92'
]
Options may be passed as an object or as a number to specify only the range to use.
The number of array elements to use for the moving average. If no number is specified half of the length of the array is used.
Example
ema(arr, 10);
// or
ema(arr, {range: 10});
Format the numbers as they're added to the result.
ema(arr, {
format: function(num) {
return num.toFixed(3);
}
});
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Please read the contributing guide for advice on opening issues, pull requests, and coding standards.
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verb
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
Jon Schlinkert
Copyright © 2017, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.5.0, on April 09, 2017.
FAQs
Calculate an exponential moving average from an array of numbers.
The npm package exponential-moving-average receives a total of 85 weekly downloads. As such, exponential-moving-average popularity was classified as not popular.
We found that exponential-moving-average demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.

Security News
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.

Security News
AI agents are writing more code than ever, and that's creating new supply chain risks. Feross joins the Risky Business Podcast to break down what that means for open source security.