跳转到内容

选股指标

获取选股器支持的所有指标定义,包含键值、名称、单位和可用范围,可用于构建自定义筛选条件。

接口:GET /v1/quote/ai/screener/indicators

Parameters

SDK 方法参数。

此方法无参数。

Request Example

Response

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "groups": [
      {
        "group_name": "公司规模与财务",
        "indicators": [
          { "id": "1", "key": "marketcap", "name": "市值", "unit": "亿", "min": null, "max": null }
        ]
      }
    ]
  }
}

所有 key 值已去除 filter_ 前缀,id 字段为字符串类型。

Response Status

StatusDescriptionSchema
200成功ScreenerIndicatorsResponse
400请求错误None

Schemas

ScreenerIndicatorsResponse

NameTypeRequiredDescription
groupsobject[]false指标分组
∟ group_namestringfalse分组名称
∟ indicatorsobject[]false该分组下的指标
∟ ∟ idstringfalse指标 ID(字符串类型)
∟ ∟ keystringfalse指标键值,用于构建筛选条件(不含 filter_ 前缀)
∟ ∟ namestringfalse指标显示名称
∟ ∟ unitstringfalse单位(如 %亿
∟ ∟ minstringfalse指标全局下限;null 表示无下限
∟ ∟ maxstringfalse指标全局上限;null 表示无上限