get_exchange_ohlcv
Retrieve high-granularity OHLCV candlestick data from a specific cryptocurrency exchange, including 1-minute candles. Ideal for sub-hour timeframes and exact per-exchange volume analysis.
Instructions
Get OHLCV candlestick data from a specific exchange (high-granularity, including 1-minute candles).
Prefer this over get_aggregated_ohlc when:
the user asks about a specific venue, OR
they need sub-hour candles (1m/5m/15m), OR
they need exact volume on one exchange.
Args: exchange_id: CCXT exchange ID, e.g. "binance". symbol: Unified symbol, e.g. "BTC/USDT". timeframe: Candle width. Not every exchange supports every timeframe; common safe choices: "1m","5m","15m","1h","4h","1d". limit: Number of candles. Most exchanges cap at ~500-1500 per call. since_ms: Optional unix-millis lower bound. Most recent candles when null.
Returns: Array of [timestamp_ms, open, high, low, close, volume] tuples, oldest first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| exchange_id | Yes | ||
| symbol | Yes | ||
| timeframe | No | 1h | |
| limit | No | ||
| since_ms | No |