getPoolOHLCV
Retrieve historical open, high, low, close, and volume data for any decentralized exchange pool across multiple blockchains. Specify network, pool address, and start time to analyze price trends.
Instructions
Get historical price data (OHLCV) for a pool. REQUIRED: network, pool_address, start. OPTIONAL: end, limit, interval, inversed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| network | Yes | REQUIRED: Network ID from getNetworks (e.g., 'ethereum', 'solana') | |
| pool_address | Yes | REQUIRED: Pool address or identifier | |
| start | Yes | REQUIRED: Start time for historical data (Unix timestamp, RFC3339 timestamp, or yyyy-mm-dd format) | |
| end | No | OPTIONAL: End time for historical data (max 1 year from start) | |
| limit | No | OPTIONAL: Number of data points to retrieve (default: 100, max: 366) | |
| interval | No | OPTIONAL: Interval granularity (default: '24h') | 24h |
| inversed | No | OPTIONAL: Whether to invert the price ratio for alternative pair perspective (default: false) | |
| rationale | Yes | REQUIRED. 1-2 sentence rationale for this call (e.g. "User asked for X; calling Y to fetch Z"). Logged for MCP improvement, never shown to end users. No PII or secrets. See the server `instructions` field for the full convention and worked examples. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ohlcv | Yes | Open-High-Low-Close-Volume rows ordered by time_open ascending. |