推荐选股策略
获取平台推荐的选股策略列表,含近期平均日涨跌幅和策略内股票。
SDK Links
Parameters
SDK 方法参数。
此方法无参数。
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"screeners": [
{
"id": "1",
"name": "高股息蓝筹股",
"groups": [
{
"group_name": "范围",
"group_type": "range",
"indicators": [
{ "id": -1, "key": "filter_market", "name": "港股", "unit": "", "min": "", "max": "", "value": "HK", "tech_data": [] }
]
},
{
"group_name": "分红指标",
"group_type": "DividendIndex",
"indicators": [
{ "id": 29, "key": "filter_divyld", "name": "股息率 (TTM)", "unit": "%", "min": "4", "max": "", "value": "", "tech_data": [] }
]
}
]
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | ScreenerStrategiesResponse |
| 400 | 请求错误 | None |
Schemas
ScreenerStrategiesResponse
| Name | Type | Required | Description |
|---|---|---|---|
| screeners | object[] | false | 策略列表 |
| ∟ id | string | false | 策略 ID |
| ∟ name | string | false | 策略名称 |
| ∟ groups | object[] | false | 策略过滤条件分组 |
| ∟ ∟ group_name | string | false | 分组名称 |
| ∟ ∟ group_type | string | false | 分组类型(如 range、Quotes、DividendIndex) |
| ∟ ∟ indicators | object[] | false | 该分组下的指标条件 |
| ∟ ∟ ∟ id | integer | false | 指标 ID |
| ∟ ∟ ∟ key | string | false | 指标键值,可用于 screener_search |
| ∟ ∟ ∟ name | string | false | 指标名称 |
| ∟ ∟ ∟ unit | string | false | 指标单位 |
| ∟ ∟ ∟ min | string | false | 策略设定的最小值;空字符串表示无下限 |
| ∟ ∟ ∟ max | string | false | 策略设定的最大值;空字符串表示无上限 |
| ∟ ∟ ∟ value | string | false | 固定值(用于非范围型指标,如市场选择器) |
| ∟ ∟ ∟ tech_data | array | false | 技术指标数据数组 |