get_grouped_daily_aggs
Retrieve aggregated daily market data for a specific date, including adjusted prices, OTC information, and market type, using the Polygon-io MCP Server.
Instructions
Get grouped daily bars for entire market for a specific date.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
adjusted | No | ||
date | Yes | ||
include_otc | No | ||
locale | No | ||
market_type | No | ||
params | No |
Input Schema (JSON Schema)
{
"properties": {
"adjusted": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Adjusted"
},
"date": {
"title": "Date",
"type": "string"
},
"include_otc": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Include Otc"
},
"locale": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Locale"
},
"market_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Market Type"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
}
},
"required": [
"date"
],
"title": "get_grouped_daily_aggsArguments",
"type": "object"
}