get_previous_close_agg
Retrieve the previous day's open, close, high, and low prices for a specified stock ticker using the MCP server.
Instructions
Get previous day's open, close, high, and low for a specific ticker.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
adjusted | No | ||
params | No | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"adjusted": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Adjusted"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_previous_close_aggArguments",
"type": "object"
}