get_historical_stock_prices
Retrieve historical stock prices for a specific company using its ticker symbol, date range, and interval options. Analyze price trends, compare data, and make informed decisions with accurate financial data.
Instructions
Gets historical stock prices for a company.
Args:
ticker: Ticker symbol of the company (e.g. AAPL, GOOGL)
start_date: Start date of the price data (e.g. 2020-01-01)
end_date: End date of the price data (e.g. 2020-12-31)
interval: Interval of the price data (e.g. minute, hour, day, week, month)
interval_multiplier: Multiplier of the interval (e.g. 1, 2, 3)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | ||
interval | No | day | |
interval_multiplier | No | ||
start_date | Yes | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"title": "End Date",
"type": "string"
},
"interval": {
"default": "day",
"title": "Interval",
"type": "string"
},
"interval_multiplier": {
"default": 1,
"title": "Interval Multiplier",
"type": "integer"
},
"start_date": {
"title": "Start Date",
"type": "string"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker",
"start_date",
"end_date"
],
"title": "get_historical_stock_pricesArguments",
"type": "object"
}