get_cash_flow_statements
Retrieve cash flow statements for a company by providing its ticker symbol, period (annual, quarterly, ttm), and the number of statements to return. Ideal for analyzing financial performance and trends.
Instructions
Get cash flow statements for a company.
Args:
ticker: Ticker symbol of the company (e.g. AAPL, GOOGL)
period: Period of the cash flow statement (e.g. annual, quarterly, ttm)
limit: Number of cash flow statements to return (default: 4)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
period | No | annual | |
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 4,
"title": "Limit",
"type": "integer"
},
"period": {
"default": "annual",
"title": "Period",
"type": "string"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_cash_flow_statementsArguments",
"type": "object"
}