Top Movers
Get stocks whose price movement exceeds the 20-trading-day standard deviation, with automatically correlated news to explain the move.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| markets | string[] | NO | Market list: HK, US, CN, SG; returns all markets if omitted |
| sort | integer | NO | Sort order: 0=time (newest first), 1=price change, 2=hotness (default) |
| date | string | NO | Target date in YYYY-MM-DD format; returns latest data if omitted |
| limit | integer | NO | Number of results to return, default 20 |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"events": [
{
"stock": {
"code": "TSLA",
"counter_id": "ST/US/TSLA",
"name": "特斯拉",
"change": "-0.0388",
"last_done": "404.110",
"market": "US",
"labels": ["汽车制造商"],
"logo": "https://assets.lbkrs.com/ticker/ST/US/TSLA.png",
"trade_status": 0
},
"timestamp": "1779202097",
"alert_reason": "波动超 20 日均值",
"alert_type": 11,
"post": null
}
],
"next_params": {
"visited": ["11098290", "11098478", "11099705"]
}
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | TopMoversResponse |
| 400 | Bad request | None |
Schemas
TopMoversResponse
| Name | Type | Required | Description |
|---|---|---|---|
| events | object[] | false | List of moving stocks |
| ∟ stock | object | false | Basic stock information |
| ∟ ∟ code | string | false | Ticker code (e.g. TSLA) |
| ∟ ∟ counter_id | string | false | Counter ID (e.g. ST/US/TSLA) |
| ∟ ∟ name | string | false | Security name |
| ∟ ∟ change | string | false | Price change ratio (e.g. -0.0388) |
| ∟ ∟ last_done | string | false | Latest trade price |
| ∟ ∟ market | string | false | Market: US, HK, CN, SG |
| ∟ ∟ labels | string[] | false | Industry / theme tags |
| ∟ ∟ logo | string | false | Logo image URL |
| ∟ ∟ trade_status | integer | false | Trading status code |
| ∟ timestamp | string | false | Event time (Unix seconds as string) |
| ∟ alert_reason | string | false | Description of the move reason |
| ∟ alert_type | integer | false | Move type code |
| ∟ post | object | false | Associated news article (complex object with title, description_html, published_at and other fields; null when no article is linked) |
| next_params | object | false | Pagination cursor object; pass to the next request to get the next page |