list_futures_schedules
Retrieve trading schedules for multiple futures products on a specific date, including session details and venue information, using the Polygon-io MCP Server.
Instructions
Get trading schedules for multiple futures products on a specific date.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
params | No | ||
session_end_date | No | ||
sort | No | ||
trading_venue | 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"
},
"session_end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Session End Date"
},
"sort": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort"
},
"trading_venue": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Trading Venue"
}
},
"title": "list_futures_schedulesArguments",
"type": "object"
}