Getting started

Guides

Nine things developers build on the computed table, each reduced to a handful of calls. Every recipe is runnable: the feed, the warehouse, and the indicator math are already done.

The recipes

Simple to complex. Each guide is a few curls and a code block — the same grammar throughout.

GuideWhat it shows
Build a stock screenerOne SQL WHERE clause screens every ticker server-side: live, as of the past, or as a push.
Build a custom indicatorDefine an indicator once as a SQL predicate and it works everywhere: screens, alerts, webhooks, series, and history.
Build a backtesterAs-of scans give point-in-time candidate sets with no look-ahead or survivorship bias; aligned series price the trades.
Build an ML datasetPoint-in-time features from ?asof=, labels from aligned series, delisted tickers included: leakage-free training data by construction.
Build a stock alert botWrite the condition in SQL, get a push when it fires: webhook to your bot or straight to Discord with no server at all.
Build a trading algorithmDefine an entry condition in SQL, backtest it as of any past moment, run it live as a webhook: entries and exits from one delivery.
Build an AI trading agentThe market as native MCP tool calls: computed answers, not raw feeds, so the model spends context on decisions.
Build a portfolio trackerHoldings as a universe: price every position in one call, chart from aligned history, and get alerts scoped to what you own.
Build a market dashboardOne row per ticker with every signal, aligned series for charts, websocket push for freshness: three calls.