Recommended Screener Strategies
Get the list of platform-recommended stock screener strategies, including recent average daily change and constituent stocks.
SDK Links
Parameters
SDK method parameters.
This method takes no parameters.
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"screeners": [
{
"id": "1",
"name": "High Dividend Blue Chips",
"groups": [
{
"group_name": "Range",
"group_type": "range",
"indicators": [
{ "id": -1, "key": "filter_market", "name": "HK", "unit": "", "min": "", "max": "", "value": "HK", "tech_data": [] }
]
},
{
"group_name": "Dividend Indicators",
"group_type": "DividendIndex",
"indicators": [
{ "id": 29, "key": "filter_divyld", "name": "Dividend Yield (TTM)", "unit": "%", "min": "4", "max": "", "value": "", "tech_data": [] }
]
}
]
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | ScreenerStrategiesResponse |
| 400 | Bad request | None |
Schemas
ScreenerStrategiesResponse
| Name | Type | Required | Description |
|---|---|---|---|
| screeners | object[] | false | Strategy list |
| ∟ id | string | false | Strategy ID |
| ∟ name | string | false | Strategy name |
| ∟ groups | object[] | false | Filter condition groups |
| ∟ ∟ group_name | string | false | Group name |
| ∟ ∟ group_type | string | false | Group type (e.g. range, Quotes, DividendIndex) |
| ∟ ∟ indicators | object[] | false | Indicator conditions in this group |
| ∟ ∟ ∟ id | integer | false | Indicator ID |
| ∟ ∟ ∟ key | string | false | Indicator key; usable in screener_search |
| ∟ ∟ ∟ name | string | false | Indicator name |
| ∟ ∟ ∟ unit | string | false | Indicator unit |
| ∟ ∟ ∟ min | string | false | Minimum value set by the strategy; empty string means no lower bound |
| ∟ ∟ ∟ max | string | false | Maximum value set by the strategy; empty string means no upper bound |
| ∟ ∟ ∟ value | string | false | Fixed value (used for non-range indicators such as market selector) |
| ∟ ∟ ∟ tech_data | array | false | Technical indicator data array |