list_futures_market_statuses
Retrieve real-time market statuses for futures products on Polygon-io MCP Server. Filter by product code, set limits, and sort results for efficient market analysis.
Instructions
Get market statuses for futures products.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
params | No | ||
product_code | No | ||
product_code_any_of | No | ||
sort | 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"
},
"product_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Product Code"
},
"product_code_any_of": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Product Code Any Of"
},
"sort": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort"
}
},
"title": "list_futures_market_statusesArguments",
"type": "object"
}