VaultCharts

VaultCharts · developers

Open-source trading intelligence for AI agents

Install the engine as a local library. Pass OHLC bars in; get BOS, FVG, order blocks, liquidity sweeps, and a scored setup JSON out. No VaultCharts server — your process, your data.

Install

npm install @vaultcharts/trading-engine

Quick start

import { analyzeSetup } from '@vaultcharts/trading-engine';

const result = analyzeSetup({
  symbol: 'BTCUSDT',
  timeframe: '4h',
  data: ohlcBars,
});

// trend, bos, fvg, orderBlock, liquiditySweep,
// score, entry, stop, targets, evidence

Why this exists

  • Not another RSI package. Commodity indicators are everywhere. Agents need deterministic market structure.
  • Not a hosted API (for now). npm install runs locally in Node, Electron, or your agent. Optional cloud later — same package.
  • LLM narrates; engine decides. Whether an FVG exists is a fact from OHLC — not a model hallucination.

Product map

  • Engine (MIT) — this package / GitHub
  • Desktop — free reference client (download)
  • Website tools /tools browser toolkit (no install)