npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

random-walk

v1.1.0

Published

Generate a stream of trend-oriented random numbers using a Box Muller transform. Useful for generating sample stock or crypto prices for analysis and testing algo trading applications, or any other application that needs a stream of trend-oriented random

Downloads

6

Readme

random-walk

Generate a stream of normalized random numbers using a Box Müller transform to create a true random walk.

The source of true random numbers is derived from measurements of quantum fluctions in a vacuum, provided by the ANU Quantum Number generator. They come in as Uint16 (1024 every 1 second), which are then paired as Uint32 and converted to floating point numbes for use in the Box Müller transform to create a normalized random walk.

If you prefer fake random numbers as the foundation, you may also use pseudo-random numbers by adjusting the params object.

Please report any issues, questions or comments here

Example

True random source numbers

alt text

Pseudo random source numbers

alt text

Install

npm i random-walk

Usage

const Walk = require('random-walk')
const walk = new Walk

Example

const Walk = require('random-walk')
const walk = new Walk

let params = {
    pseudo: false,
    rate: {min:50, max:100},
    type: "normal",
    base: 100,
    scale: 100
}

walk.on("result", result => {
    console.log(result)
})

walk.get("walk", params)
Params

The params object is an optional object that can be passed in to change the numbers returned and how quickly they are returned.

Example
let params = {
    pseudo: false,   // Boolean: false = real random numbers (default), or true = psuedo random numbers
    rate: {min:50, max:100},      // Desired rate in milliseconds: 100 (default) or {min: 50, max: 100} to randomly vary the rate
    type: "normal", // "normal" (default), "positive", "negative"
    base: 100,      // 0 (default). Starting value. Can be any number.
    scale: 100      // 100 is normal (default), > 100 is less volatile, < 100 is more volatile
}

If params is not passed, defaults will be used.

Pseudo is boolean and can be false for real random numbers (default), or true for pseudo random numbers

pseudo: false // true

Rate can be any number (default 100), or an object {min: 50, max: 100} to specify min and max which will randomly vary the rate.

rate: 100 // any number

Type changes how random-walk returns the numbers. Either "positive" for negative numbers only, "negative" positive numbers only, or "normal" both positive and negative numbers (default)

type: "normal" // "positive", "negative"

Base is the base number (default 0), which might also be consered a "mean" or "average" you would like to simulate. You may use any number.

base: 100 // any number, default is 0

Scale describes the fraction applied to the random-walk result. 100 means the result will be applied as a percentage. If you would like to increase the "volatility" of the result, decrease the number below 100. If you would like to decrease the "volatility" of the result, increase the number above 100.

scale: 100 // any number, default is 100

TODO

  • Add browser support