综合评分通达信
查询源端综合评分、维度评分和排名;这是源端评价,不代表 AxData 自有判断。
查询源端综合评分、维度评分和排名;这是源端评价,不代表 AxData 自有判断。 该接口返回源端评价或评分,不代表 AxData 自有判断。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
code | string | 是 | 股票代码:支持 000001、000001.SZ、sz000001;批量可传列表或英文逗号分隔字符串。 |
参数示例
# 单个标的
client.call("stock_score_summary_tdx", code="000001.SZ")
# 批量请求多个标的
client.call("stock_score_summary_tdx", code=["000034.SZ", "000001.SZ"])返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
instrument_id | string | AxData 统一证券代码,例如 000001.SZ。 |
symbol | string | 交易所原始六位代码。 |
score | number | 源端综合评分。 |
industry_rank | integer | 行业排名名次。 |
industry_rank_total | integer | 行业排名总数。 |
market_rank | integer | A 股市场排名名次。 |
market_rank_total | integer | A 股市场排名总数。 |
market_win_pct | number | 打败 A 股百分比。 |
date | date | 日期。 |
capital_score | number | 资金面评分。 |
fundamental_score | number | 基本面评分。 |
news_score | number | 消息面评分。 |
theme_score | number | 主题面评分。 |
industry_name | string | 行业名。 |
stock_name | string | 股票名。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"stock_score_summary_tdx",
code='000001.SZ',
)
HTTP API
POST /v1/request/stock_score_summary_tdx
Content-Type: application/json
{
"params": {
"code": "000001.SZ"
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"code": "000001.SZ"
}
响应样例
| instrument_id | symbol |
|---|---|
| 000001.SZ | 000001 |
生成时间:2026-07-06T16:54:55+00:00