Socket
Socket
Sign inDemoInstall

heikinashi

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    heikinashi

Converting OHLC Candlestick data to Heikin-Ashi


Version published
Weekly downloads
18
Maintainers
1
Install size
242 kB
Created
Weekly downloads
 

Readme

Source

Heikinashi

NPM NPM Downloads

Converts OHLC Candlestick data to Heikin-Ashi

The conversion is done based on this:

HA.Close = (Open(0) + High(0) + Low(0) + Close(0)) / 4;
HA.Open = (HA.Open(-1) + HA.Close(-1)) / 2;
HA.High = MAX(High(0), HA.Open(0), HA.Close(0));
HA.Low = Min(Low(0), HA - Open(0), HA.Close(0));

// Where (0) means current candle, and (-1) means the previous candle

The output is an array of the same size

let result = [{
  open: 100,
  high: 200,
  low: 10,
  close: 50,
}, ...
]

Install

npm i -S heikinashi

Usage

var HeikinAshi = require("heikinashi");

let result = HeikinAshi([
  {
    time: 1525651200,
    close: 9377.81,
    high: 9662.23,
    low: 9202.13,
    open: 9643.99,
    volume: 73842.44,
  },
  ...
],
options{
  overWrite: false,  //overwrites the original data or create a new array
  formatNumbers: false, //formats the numbers and reduces their significant digits based on the values
  decimals: 4,  //number of significant digits
  forceExactDecimals: false //force the number of significant digits or reduce them if the number is high
});

console.log("result: ", JSON.stringify(result, null, 2));

Examples:

This package is used to implement TD Sequential indicator in Bitcoin CrazYness app:

BitcoinCrazYness.com

Below is an example screenshot.

StandardHeikin Ashi

License

MIT

Keywords

FAQs

Last updated on 23 Jul 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc