get_daily_open_close_agg
Retrieve daily open, close, high, and low prices for a specific ticker and date using Polygon-io MCP Server. Ideal for analyzing stock data trends over time.
Instructions
Get daily open, close, high, and low for a specific ticker and date.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
adjusted | No | ||
date | Yes | ||
params | No | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"adjusted": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Adjusted"
},
"date": {
"title": "Date",
"type": "string"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker",
"date"
],
"title": "get_daily_open_close_aggArguments",
"type": "object"
}