tulip-wasm is a WebAssembly ported version of tulip indicators, so it has extremely high performance while supporting browsers and Nodejs environments, and provides the ability to combine indicators and calculate them, as well as a friendly API.
npm install tulip-wasm
import * as tulip from 'tulip-wasm';
async function main() {
await tulip.init();
console.log(tulip.sma([1, 2, 3, 4, 5], 2));
}
main();
tulip-wasm supports all 104 technical indicators of tulip indicators You can learn what technical indicators tulip-wasm contains by reading the official documentation of tulip indicators All indicators can be accessed in a way like tulip.xxx