
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
nostradamus
Advanced tools
Holt-Winters triple exponential smoothing algorithm (for time series forecasting)
$ npm install nostradamus
Option 1:
// plain-vanilla
var forecast = require('nostradamus')
, data = [
362, 385, 432, 341, 382, 409,
498, 387, 473, 513, 582, 474,
544, 582, 681, 557, 628, 707,
773, 592, 627, 725, 854, 661
]
, alpha = 0.5 // overall smoothing component
, beta = 0.4 // trend smoothing component
, gamma = 0.6 // seasonal smoothing component
, period = 4 // # of observations per season
, m = 4 // # of future observations to forecast
, predictions = [];
predictions = forecast(data, alpha, beta, gamma, period, m);
// -> [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 594.8043646513713, 357.12171044215734, …]
Option 2:
// faster w/ reuse of internal arrays
// if you know you'll be feeding it
// the same # of data, same params (alpha, beta, etc.),
// and you need to throw tons of data at it
var setupForecast = require('nostradamus').memo // note the (dot)memo
, forecast
, data = [
362, 385, 432, 341, 382, 409,
498, 387, 473, 513, 582, 474,
544, 582, 681, 557, 628, 707,
773, 592, 627, 725, 854, 661
]
, predictions = [];
forecast = setupForecast({
length: data.length,
alpha: 0.5, // overall smoothing component
beta: 0.4, // trend smoothing component
gamma: 0.6, // seasonal smoothing component
period: 4, // # of observations per season
m: 4 // # of future observations to forecase
});
predictions = forecast(data);
// -> [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 594.8043646513713, 357.12171044215734, …]
forecast([…]);
forecast([…]);
forecast([…]);
…
Some rules your parameters must abide by:
alpha >= 0.0 && alpha >= 1.0beta >= 0.0 && beta <= 1.0gamma >= 0.0 && gamma <= 1.0m > 0m <= periodThis project would't exist, if not for the versions written in Go and Java. Thanks!
FAQs
Holt-Winters triple exponential smoothing algorithm (for time series forecasting)
We found that nostradamus 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.