retrieve_financial_statements
Retrieve income statements, balance sheets, or cash flow data for a specific stock ticker to support financial analysis and investment research.
Instructions
Retrieves the annual income statements, balance sheet, or cash flow for the given ticker.
Args:
ticker: The ticker symbol of the stock to retrieve the statements for.
indicator: The type of financial statement to retrieve. e.g. "income_statement", "balance_sheet", "cash_flow"
Returns:
A JSON-serializable dict with income statements, balance sheet, or cash flow.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indicator | Yes | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"indicator": {
"title": "Indicator",
"type": "string"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker",
"indicator"
],
"title": "retrieve_financial_statementsArguments",
"type": "object"
}