tickerbot_get_ticker_bars
Fetch historical OHLCV bars for up to 50 tickers at intervals from 1s to 1d, with point-in-time and back-paging options.
Instructions
Get OHLCV (open/high/low/close/volume) bars for one or more symbols at a given interval, oldest-first. Pass a comma-separated ticker list (up to 50) for a bulk response keyed by symbol. Use asof for a single point-in-time bar, or before+limit to back-page. 1d/1h cover the full universe with full history; sub-hour intervals back-fill on demand.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Window end (inclusive; a bare YYYY-MM-DD means through the end of that day). Mutually exclusive with `asof` and `before` (400). | |
| asof | No | Return a single bar as of this date/timestamp (point-in-time). | |
| from | No | Window start (inclusive), YYYY-MM-DD / ISO / epoch-ms. Combines with `to`; page inside the window with `cursor`. Mutually exclusive with `asof` and `before` (400). | |
| limit | No | Most-recent N bars. Default 100. | |
| before | No | Return the N bars ending strictly before this date/timestamp (YYYY-MM-DD or epoch-ms) — back-paging. | |
| cursor | No | Continuation token from a prior response's `next_cursor` (sugar for `before`, and the way to page inside a from/to window). | |
| ticker | Yes | Symbol, or comma-separated list (up to 50) for a bulk response keyed by symbol. | |
| interval | Yes | Bar interval. |