get_financial_statement
Retrieve detailed financial statements for companies, including annual or quarterly income statements, balance sheets, and cash flow reports, using stock tickers and financial type specifications.
Instructions
获取公司财报,类型包括年度/季度的收入表、资产负债表和现金流量表。
参数说明: ticker: str 股票代码,例如 "AAPL" financial_type: str 财报类型:income_stmt_annual、income_stmt_quarterly、balance_sheet_annual、balance_sheet_quarterly、cashflow_annual、cashflow_quarterly
Input Schema
Name | Required | Description | Default |
---|---|---|---|
financial_type | Yes | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"financial_type": {
"title": "Financial Type",
"type": "string"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker",
"financial_type"
],
"title": "get_financial_statementArguments",
"type": "object"
}