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

fibonacci-fit

v0.0.115

Published

find best-fit fibonacci price retracement levels [or arbitrary levels] for an array of prices

Downloads

3

Readme

fibonacci-fit

Find best-fit Fibonacci price retracement levels for an array of prices.

Given a list of prices, this module finds the optimal low/high prices to draw the intermediate Fibonacci levels [0, 0.236, 0.382, 0.5, 0.618, 0.786, 1] such that the MSE between each price and the nearest Fibonacci level, is minimized.

Can also be used to find the best-fit for an arbitrary list of levels rather than the Fibonacci levels.

Installation

npm i fibonacci-fit

Usage

In this example we load some candles from a compressed JSON file, extract a list of prices, then graph the result.

var {fitSlow, fitStochastic, fitStochastic2, encodeIntoNearestLevels, DEFAULT_FIB_LEVELS} = require('fibonacci-fit');

// DEFAULT_FIB_LEVELS = [0, 0.236, 0.382, 0.5, 0.618, 0.786, 1]
// DEFAULT_FIB_LEVELS_EXTENDED = [-0.236, 0, 0.236, 0.382, 0.5, 0.618, 0.786, 1, 1.272];

//fitSlow(prices, _fibLevels = DEFAULT_FIB_LEVELS, minLengthStartToEnd = 10)
// ^^^ slow, inefficient, brute force, find best range based on all prices in the list

//fitStochastic(prices, attempts = prices.length, _fibLevels = DEFAULT_FIB_LEVELS)
// ^^^ stochastic random, choose random prices x[attempts] times and take the best result

//fitStochastic2(prices, stochasticSteps=500, randomStartSteps=20, tempMultiplier = 0.95, _fibLevels = DEFAULT_FIB_LEVELS)
// ^^^ stochastic annealing style, choose randomly x[randomStartSteps] times then x[stochasticSteps] times with temperature decreasing by a factor of tempMultiplier [starting from std/2 of prices]. results are not limited to exactly values of prices like the other functions. 

//both return objects of the same format:
// {
//  start,           //price at the lowest fibonacci level
//  end,             //price at the highest fibonacci level
//  mse,             //mean squared error of price vs nearest fibonacci level
//  fibonacciLevels, // the list of fibonacci levels that we input
//  priceLevels      //the list of prices at each fibonacci level
// }

//also: 
//encodeIntoNearestLevels(prices, doReturnString = false, windowSizeFit=10, minFitWidthFib=1)
//^^^ convert list of prices into list of indices representing 
//   the index of the nearest fib-line for the price at that point, 
//   given fib-lines fitted over the previous windowSizeFit prices, 
//   in a rolling fashion. Result length is same as input.
//
// - set doReturnString to true to get a string like "aabbac..." 
//   [where a=0, b=1, etc] instead of an array of indices [ints].
//
// - note that the first ${windowSizeFit} elements will use smaller windows,
//   and so may be unreliable / random ...

//loading last 100 candles from a dataset... {open, high, low, close, volume}
var candlesFull = require('jsonfile-compressed-brotli').readFileSync('./AAPL.json');
candlesFull=candlesFull.slice(-100);

//extract a list of just closing prices
var prices = candlesFull.map(c=>c.close);
//get the best-fit fibonacci levels   
var fibResults = fitSlow(prices); //or fitStochastic(prices);

var {drawChartForCandles,saveChartForCandles} = require('ohlc-chart-simple');

var config = {
    lines:
        fibResult.priceLevels.map(function(price){
            return {startPrice: price, endPrice: price, startIndex:1, endIndex: 100, color: [0,0,255], thickness:0}
        }),
    w: 512,
    h: 350,
    profileBucketsWidth: 0,
    volumeBarsHeight: 16,
    bgColor: [255,255,255],
    title: "AAPL",
    filename: `./candlestick-chart.png`,
}

saveChartForCandles(candlesFull, config);

//"quantize" prices into index-of-nearest-levels, rolling:

var windowSize = 10; //back-fitting window, default 10, try higher values 
var minFitWidthFib = 1; //default 1
var doReturnString = true; //default false 
console.log(encodeIntoNearestLevels(prices, doReturnString, windowSize, minFitWidthFib));

//aacgdgggggfggfebcaaggggbcdcgggfeffeefggcdaacaeagagfggggfggfggfgfeeddbcecgggeceffggggfggeecagfbaafeaa

doReturnString = false;
console.log(encodeIntoNearestLevels(prices, doReturnString, windowSize, minFitWidthFib));

// [
//     0, 0, 2, 6, 3, 6, 6, 6, 6, 6, 5, 6,
//     6, 5, 4, 1, 2, 0, 0, 6, 6, 6, 6, 1, ...

//notice that these are NOT the candle-by-candle nearest line indices corresponding to the shown graph, 
//as this function is calculated per-candle in a rolling fashion only using 'earlier' data

Resulting plot of best-fit Fibonacci price levels:

chart

See Also

stonks