npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

tulip-rs-node

v0.1.14

Published

Node.js native bindings for tulip_rs — Technical Analysis Library

Readme

tulip-rs-node

npm License: MIT Docs

High-performance technical analysis for Node.js — powered by Rust.

Native Node.js bindings for TulipRS via napi-rs. Implements 70+ technical indicators and 60+ candlestick patterns with first-class SIMD acceleration. Process multiple assets or multiple parameter sets in a single CPU pass, stream live bars into stateful indicators without reprocessing history.

Full API documentation: me60732.github.io/tulip_rs


Why tulip-rs-node?

| | tulip-rs-node | tulipindicators / technicalindicators | |---|---|---| | SIMD — multiple assets | ✅ N assets in one pass | ❌ one asset at a time | | SIMD — multiple options | ✅ N parameter sets in one pass | ❌ one parameter set at a time | | Stateful streaming | ✅ resume from saved state | ❌ full recompute each tick | | State serialisation | ✅ Buffer (bincode) + JSON | ❌ | | Performance | ✅ native Rust + SIMD | ❌ pure JS |


Installation

npm install tulip-rs-node

Prebuilt binaries are provided for Linux x64, macOS x64, and macOS arm64. No Rust toolchain required for end users.

Build from source

Requires Rust nightly (pinned via rust-toolchain.toml) and @napi-rs/cli.

git clone https://github.com/me60732/tulip_rs_node
cd tulip_rs_node
npm install
npm run build

Quick Start

Every indicator lives on the ti namespace object and follows the same API — learn it once, use it everywhere.

import * as ti from 'tulip-rs-node';

const close = [81.59, 81.06, 82.87, 83.00, 83.61,
               83.15, 82.84, 83.99, 84.55, 84.36];

// inputs: number[][]  |  options: number[]
const [outputs, state] = ti.ema.indicator([close], [5]);

console.log(outputs[0]); // EMA(5) values

// Streaming: feed new bars without reprocessing history
const newBar = [85.10];
const nextOutputs = state.batchIndicator([newBar]);

API

Indicator info

const info = ti.sma.info;
// {
//   name: 'sma',
//   fullName: 'Simple Moving Average',
//   inputs: ['real'],
//   options: ['period'],
//   outputs: ['sma'],
//   optionalOutputs: [],
//   indicatorType: 'Trend',
//   displayType: 'Overlay'
// }

ti.sma.minData([5]);            // minimum bars needed to produce output
ti.sma.minDataAccuracy([5], 6); // bars needed for 6-decimal accuracy

Running an indicator

const [outputs, state] = ti.sma.indicator([close], [5]);
// outputs: number[][]   — one array per output series
// state:   SmaState     — snapshot of internal state after the last bar

Streaming continuation

Save the state after an initial batch, then feed new bars incrementally without touching the history:

const [outputs, state] = ti.sma.indicator([close.slice(0, -5)], [5]);

// later — new bars arrive
const newOutputs = state.batchIndicator([close.slice(-5)]);

State serialisation

States can be round-tripped to a Buffer (fast, binary) or JSON (human-readable, useful for cross-process or cross-language transfer):

// save
const buf  = state.toBuffer();
const json = state.toJson();

// restore
const stateA = ti.sma.State.fromBuffer(buf);
const stateB = ti.sma.State.fromJson(json);

SIMD — multiple assets

Process N assets in a single CPU pass. N must be 2, 4, 8, or 16.

const simdInputs = [
  [asset1Close],   // asset 1
  [asset2Close],   // asset 2
  [asset3Close],   // asset 3
  [asset4Close],   // asset 4
];

const [results, states] = ti.sma.simdByAssets(simdInputs, [14]);

results.forEach((output, i) => {
  console.log(`Asset ${i + 1} SMA:`, output[0]);
});

SIMD — multiple option sets

Run N different parameter sets against the same data in one pass. N must be 2, 4, 8, or 16.

const simdOptions = [[2], [5], [8], [10]]; // 4 period values

const [results, states] = ti.sma.simdByOptions([close], simdOptions);

results.forEach((output, i) => {
  console.log(`Period ${simdOptions[i][0]} SMA:`, output[0]);
});

Multi-input indicators

Indicators that need more than one price series take them as additional arrays in the inputs argument:

// STOCH — high, low, close
const [outputs] = ti.stoch.indicator([high, low, close], [5, 3, 3]);
// outputs[0] → %K line
// outputs[1] → %D line

// MACD — close only, three output series
const [outputs] = ti.macd.indicator([close], [2, 5, 9]);
// outputs[0] → MACD line
// outputs[1] → Signal line
// outputs[2] → Histogram

// AD — high, low, close, volume
const [outputs] = ti.ad.indicator([high, low, close, volume], []);

Candlestick patterns

The candlestick indicator returns pattern objects per bar instead of numeric series:

const [result, state] = ti.candlestick.indicator(
  [open, high, low, close],
  [5, 1, 1], // candle_period, trend_period, trend_signal_period
);

result.forEach((patterns, bar) => {
  if (patterns.length > 0) {
    patterns.forEach(p => {
      console.log(`Bar ${bar}: ${p.fullName} (${p.forecast})`);
    });
  }
});

// Streaming — append one new bar
const newBar = state.batchIndicator([newOpen, newHigh, newLow, newClose]);

Each pattern object has:

{
  name:         'ThreeWhiteSoldiers',
  fullName:     'Three White Soldiers',
  japaneseName: 'akasankuusen',
  bars:         3,
  forecast:     'BullishReversal'
}

Indicators

| Category | Indicators | |---|---| | Trend | SMA, EMA, DEMA, TEMA, WMA, HMA, KAMA, TRIMA, ZLEMA, WILDERS, VIDYA, LINREG, TSF | | Momentum | RSI, CMO, MOM, ROC, ROCR, STOCH, STOCHRSI, DPO, FOSC, MACD, APO, PPO | | Volatility | ATR, NATR, VOLATILITY, BBANDS, STDDEV, MD | | Volume | OBV, AD, ADOSC, MFI, EMV, NVI, PVI, KVO, VWMA, VOSC | | Directional | ADX, ADXR, DI, DM, DX, AROON, AROONOSC, PSAR | | Price | AVGPRICE, MEDPRICE, TYPPRICE, WCPRICE | | Other | AO, BOP, CCI, CVI, FISHER, MASS, MARKETFI, MSW, QSTICK, TR, VHF, WAD, WILLR, PIVOTPOINT, ULTOSC | | Candlestick | 60+ patterns via ti.candlestick |


Running the Examples

Build the package first, then run any example directly with Node:

npm run build
node examples/ti_sma_example.js
node examples/ti_macd_example.js
node examples/ti_candlestick_example.js

Examples are provided for every indicator under examples/.


Language Support

| Language | Status | Package | |---|---|---| | Node.js | ✅ Supported | tulip-rs-node (this repo) | | Rust | ✅ Native | tulip_rs | | Python | ✅ Supported | tulip_rs_python · pip install tulip-rs | | R | 🔜 Planned | — | | Julia | 🔜 Planned | — |


License

MIT