get_financial_statements
Extract the three major Chinese financial statements—income statement, balance sheet, and cash flow—as text from a company's filing PDF by ticker, year, and form.
Instructions
Extract the three major financial statements (三大报表) as text.
Resolves the company's filing PDF for (ticker, year, form) via the
report cache (no re-download on repeat), parses the table of contents,
and returns each statement's body text:
statements.income_statement(利润表) — prefers 合并利润表statements.balance_sheet(资产负债表) — prefers 合并资产负债表statements.cashflow(现金流量表) — prefers 合并现金流量表
Returns section text only — never PDF bytes. Statements not located
in the TOC are listed in missing (with the full available title
list so the caller can fall back to get_section with a custom selector).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| form | No | form name; defaults to "年度报告". | 年度报告 |
| year | Yes | fiscal year. | |
| ticker_or_name | Yes | ticker or name (see get_company). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||