Technical indicators, pre-computed

RSI (14), MACD, ATR, Bollinger Bands, and SMAs (10 / 20 / 50 / 200) pre-computed across ~12,000 tickers, alongside 100+ other queryable fields and 50+ signal flags. Filter by indicator state, plot any indicator’s history, fire on threshold crosses.

GET /v2/scan

Filter by indicator state in one query

Common conditions are exposed as boolean flags — rsi_oversold, macd_above_signal, above_sma_50, golden_cross_today, at_bollinger_upper. The raw indicator values are queryable as numeric columns (rsi_14, macd_histogram, atr_14). Compose any condition, scan the universe in one HTTP call.

WHERE clause
-- oversold names recovering on volume
rsi_oversold
  AND macd_above_signal
  AND volume_unusual_2x
  AND day_change_pct > 0
response
200·4 matches · 138ms
tickerrsi_14macd_histogramrelative_volumeday_change_pct
SOFI28.4+0.122.8×+2.1%
PLTR29.1+0.343.4×+3.8%
SQ27.6+0.082.1×+1.4%
NET29.7+0.212.6×+2.9%

endpoints you’ll use

Three ways to use indicators

Same pre-computed values, three delivery modes: full snapshot, time series, or filter-by-state.

/v2/tickers/{ticker}

Every indicator value for one ticker in a single call. RSI, MACD, ATR, SMAs, plus 100+ other fields.

Docs →

/v2/signals/.../history

Time series for any indicator × any ticker. Plot, backtest, run regressions.

Docs →

/v2/scan

Filter the universe by indicator state in one query (e.g., RSI<30 AND MACD bullish).

Docs →

/v2/webhooks

Subscribe an indicator condition; get pushed when a ticker crosses your threshold.

Docs →

why this works

Built for devs who’d rather not maintain a TA library

comparison

TrendSpider vs Tickerbot

TrendSpider

UI / chart-focused

  • Chart UI primarily; limited API, no flag vocabulary
  • Custom indicators require their proprietary script language
  • Per-chart alerts, not programmatic webhooks
  • No bulk universe scans by indicator state

Tickerbot

API, scanner + webhook, chart-agnostic

  • REST API: filter by indicator state with SQL
  • Indicators as boolean flags AND raw numeric columns
  • Webhook subscriptions on any indicator condition
  • Scan the universe in one HTTP call

works with your agent

Agents are experts at SQL. Hand them the loop.

Skip the indicator math entirely. Your agent queries RSI, MACD, and ATR as SQL columns, then composes them into conditions without ever computing a moving average or tracking a price history buffer.

See the agent integration →

ship it

Get started