美股估值概览
Longbridge US 账户
此方法仅适用于美国数据中心账户。
获取美股估值概览——当前估值指标及历史区间。
SDK Links
Parameters
SDK 方法参数。
| 名称 | 类型 | 必填 | 描述 |
|---|---|---|---|
| symbol | string | 是 | 股票代码,如 AAPL.US |
Request Example
Response
Response Example
json
{
"indicator": "PE",
"metrics": {
"pe": {
"circle": "35.2",
"part": "72",
"metric": "PE",
"desc": "Price-to-Earnings ratio",
"industry_median": "28.4"
}
},
"range": 72,
"date": "2026-07-01",
"ccy_symbol": "USD",
"ai_summary": "Apple's PE ratio is in the 72nd percentile...",
"aichat_data": {
"agent_id": "valuation_aapl",
"handoff_agent_id": "",
"symbol": "AAPL.US",
"text": "Valuation overview for AAPL",
"type": "valuation",
"workflow_type": "valuation"
}
}Response Status
| 状态码 | 描述 | 结构 |
|---|---|---|
| 200 | 成功 | UsValuationOverview |
| 400 | 请求错误 | None |
Schemas
UsValuationOverview
| 名称 | 类型 | 必填 | 描述 |
|---|---|---|---|
| indicator | string | 是 | 主要估值指标名称(如 PE) |
| metrics | map[string, USValuationMetric] | 是 | 以指标名称为键的估值指标字典 |
| range | int | 是 | 历史百分位(0–100) |
| date | string | 是 | 估值日期 |
| ccy_symbol | string | 是 | 货币符号 |
| ai_summary | string | 否 | AI 生成的估值摘要 |
| aichat_data | USAIChatData | 否 | AI 对话上下文数据 |
USValuationMetric
| 名称 | 类型 | 描述 |
|---|---|---|
| circle | string | 当前指标数值 |
| part | string | 百分位位置 |
| metric | string | 指标名称 |
| desc | string | 指标描述 |
| industry_median | string | 行业中位数 |