company_performance_hk
Retrieve comprehensive financial data for Hong Kong-listed companies, including income statements, balance sheets, and cash flow statements, by specifying stock codes, date ranges, and report types.
Instructions
获取港股上市公司综合表现数据,包括利润表、资产负债表、现金流量表等财务报表数据
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data_type | Yes | 数据类型:income(利润表)、balance(资产负债表)、cashflow(现金流量表) | |
end_date | Yes | 结束日期,格式为YYYYMMDD,如'20231231' | |
ind_name | No | 指定财务科目名称,如'营业额'、'毛利'、'除税后溢利'等,不指定则返回全部科目 | |
period | No | 特定报告期,格式为YYYYMMDD,如'20231231'表示2023年年报。指定此参数时将忽略start_date和end_date | |
start_date | Yes | 起始日期,格式为YYYYMMDD,如'20230101' | |
ts_code | Yes | 港股代码,如'00700.HK'表示腾讯控股,'00939.HK'表示建设银行 |
Input Schema (JSON Schema)
{
"properties": {
"data_type": {
"description": "数据类型:income(利润表)、balance(资产负债表)、cashflow(现金流量表)",
"enum": [
"income",
"balance",
"cashflow"
],
"type": "string"
},
"end_date": {
"description": "结束日期,格式为YYYYMMDD,如'20231231'",
"type": "string"
},
"ind_name": {
"description": "指定财务科目名称,如'营业额'、'毛利'、'除税后溢利'等,不指定则返回全部科目",
"type": "string"
},
"period": {
"description": "特定报告期,格式为YYYYMMDD,如'20231231'表示2023年年报。指定此参数时将忽略start_date和end_date",
"type": "string"
},
"start_date": {
"description": "起始日期,格式为YYYYMMDD,如'20230101'",
"type": "string"
},
"ts_code": {
"description": "港股代码,如'00700.HK'表示腾讯控股,'00939.HK'表示建设银行",
"type": "string"
}
},
"required": [
"ts_code",
"data_type",
"start_date",
"end_date"
],
"type": "object"
}