Screener Strategy Detail
Get the full configuration of a single stock screener strategy by strategy ID, including all indicator groups and the filter range for each indicator.
Endpoint: GET /v1/quote/ai/screener/strategy/{id} (strategy ID as path parameter)
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| id | integer | YES | Strategy ID from screener_recommend_strategies or screener_user_strategies |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"id": 19,
"name": "今日大涨股票",
"market": "US",
"type": "platform",
"filter": {
"filters": [
{ "key": "prevchg", "min": "2", "max": "", "tech_values": {} }
]
}
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | ScreenerStrategyDetail |
| 400 | Bad request | None |
Schemas
ScreenerStrategyDetail
| Name | Type | Required | Description |
|---|---|---|---|
| id | integer | false | Strategy ID |
| name | string | false | Strategy name |
| market | string | false | Target market |
| type | string | false | Strategy type |
| filter | object | false | Filter configuration |
| ∟ filters | object[] | false | Filter conditions |
| ∟ ∟ key | string | false | Indicator key (no filter_ prefix) |
| ∟ ∟ min | string | false | Lower bound |
| ∟ ∟ max | string | false | Upper bound |
| ∟ ∟ tech_values | object | false | Technical indicator params |