TA-Lib C code ported to WebAssembly
npm install talib.jsTA-Lib, the technical analysis library written in C, ported to WebAssembly. Plus a nice API wrapper layer, typescript support and docs.
```
npm install --save talib.js
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
] }
``Visit https://hackape.github.io/talib.js/
Docs are generated using typedoc and hosted on GitHub Pages.