跳轉到內容

選股指標

獲取選股器支持的所有指標定義,包含鍵值、名稱、單位和可用範圍,可用於構建自定義篩選條件。

接口: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 表示無上限