list_futures_aggregates
Retrieve aggregated data for futures contracts within specified time ranges using ticker and resolution inputs on the Polygon-io MCP Server.
Instructions
Get aggregates for a futures contract in a given time range.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
params | No | ||
resolution | Yes | ||
sort | No | ||
ticker | Yes | ||
window_start | No | ||
window_start_gt | No | ||
window_start_gte | No | ||
window_start_lt | No | ||
window_start_lte | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"resolution": {
"title": "Resolution",
"type": "string"
},
"sort": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort"
},
"ticker": {
"title": "Ticker",
"type": "string"
},
"window_start": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Window Start"
},
"window_start_gt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Window Start Gt"
},
"window_start_gte": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Window Start Gte"
},
"window_start_lt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Window Start Lt"
},
"window_start_lte": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Window Start Lte"
}
},
"required": [
"ticker",
"resolution"
],
"title": "list_futures_aggregatesArguments",
"type": "object"
}