Preset Screener Strategies
Get the list of platform-preset stock screener strategies, including recent average daily change and constituent stocks.
Endpoint: GET /v1/quote/ai/screener/strategies/recommend
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| market | string | NO | Market filter: US, HK, CN, SG. Default: US |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"strategys": [
{ "id": 19, "name": "今日大涨股票", "type": "platform", "market": "US" },
{ "id": 20, "name": "今年增长冠军", "type": "platform", "market": "US" }
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | ScreenerStrategiesResponse |
| 400 | Bad request | None |
Schemas
ScreenerStrategiesResponse
| Name | Type | Required | Description |
|---|---|---|---|
| strategys | object[] | false | Strategy list |
| ∟ id | integer | false | Strategy ID (pass to screener_strategy or screener_search) |
| ∟ name | string | false | Strategy name |
| ∟ type | string | false | "platform" for preset strategies |
| ∟ market | string | false | Target market (e.g. "US", "HK") |