Endpoints · Strategies

Per-bar history for a strategy on a ticker

GET/v2/strategies/{name}/{ticker}/history/{interval}

Returns the condition evaluated at each bar for a given (strategy × ticker × interval). Same response shape as /v2/signals/{name}/{ticker}/history/{interval} — the dashboard chart overlay code handles both interchangeably. Useful for visualizing past firings before subscribing a webhook: write the condition, hit this endpoint, see when it would have fired.

Plan access

Hobby and above.

Rate limit

Hobby 60/min · Pro 2,000/min · Scale 10,000/min.

Capacity

Counts against your saved-rule capacity until v1.5 introduces a separate cap.

stringrequired

Strategy slug.

stringrequired

Ticker symbol.

stringrequired

Bar resolution.

integer

Earliest epoch ms (inclusive). Defaults to interval-dependent lookback.

integer

Latest epoch ms (inclusive). Defaults to now.

string

Opaque cursor for pagination.

200
{ as_of, ticker, interval, count, next_cursor, bars: [{ t, v }, …] }v is the boolean value at bar t (epoch ms).
400
Bad ticker or interval.
404
Strategy or ticker not found.