get_aggs
Retrieve aggregate bars for a specific ticker within a defined date range and custom time window using specified parameters. Ideal for analyzing financial data trends over time.
Instructions
List aggregate bars for a ticker over a given date range in custom time window sizes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
adjusted | No | ||
from_ | Yes | ||
limit | No | ||
multiplier | Yes | ||
params | No | ||
sort | No | ||
ticker | Yes | ||
timespan | Yes | ||
to | Yes |
Input Schema (JSON Schema)
{
"properties": {
"adjusted": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Adjusted"
},
"from_": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"title": "From"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"multiplier": {
"title": "Multiplier",
"type": "integer"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"sort": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort"
},
"ticker": {
"title": "Ticker",
"type": "string"
},
"timespan": {
"title": "Timespan",
"type": "string"
},
"to": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"title": "To"
}
},
"required": [
"ticker",
"multiplier",
"timespan",
"from_",
"to"
],
"title": "get_aggsArguments",
"type": "object"
}