Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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,
}, ...
]
npm i -S heikinashi
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));
This package is used to implement TD Sequential indicator in Bitcoin CrazYness app:
Below is an example screenshot.
Standard | Heikin Ashi |
---|---|
FAQs
Converting OHLC Candlestick data to Heikin-Ashi
The npm package heikinashi receives a total of 21 weekly downloads. As such, heikinashi popularity was classified as not popular.
We found that heikinashi 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.