0.1.0 • Published 3 years ago

talib.js v0.1.0

Weekly downloads
8
License
BSD-3-Clause
Repository
github
Last release
3 years ago

talib.js

TA-Lib, the technical analysis library written in C, ported to WebAssembly. Plus a nice API wrapper layer, typescript support and docs.

Installation

npm install --save talib.js

Usage

const talib = require("talib.js");

const inReal = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];

async function main() {
  await talib.init();
  console.log(talib.ADD({ inReal0: inReal, inReal1: inReal }));
}

main();

output:

{ output: [
    2,  4,  6,  8, 10,
  12, 14, 16, 18, 20
] }

Documentation

Visit https://hackape.github.io/talib.js/

Docs are generated using typedoc and hosted on GitHub Pages.