異動股票(Top Movers)
獲取價格波動超過近 20 個交易日標準差的異動股票,系統自動關聯相關新聞解讀異動原因。
SDK Links
Parameters
SDK 方法參數。
| Name | Type | Required | Description |
|---|---|---|---|
| markets | string[] | 否 | 市場列表:HK、US、CN、SG;不傳返回所有市場 |
| sort | integer | 否 | 排序方式:0=時間(最新優先),1=漲跌幅,2=熱度(默認) |
| date | string | 否 | 指定日期,格式 YYYY-MM-DD;不傳返回最新數據 |
| limit | integer | 否 | 返回條數,默認 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 | 成功 | TopMoversResponse |
| 400 | 請求錯誤 | None |
Schemas
TopMoversResponse
| Name | Type | Required | Description |
|---|---|---|---|
| events | object[] | false | 異動股票列表 |
| ∟ stock | object | false | 股票基本信息 |
| ∟ ∟ code | string | false | 股票代碼(如 TSLA) |
| ∟ ∟ counter_id | string | false | Counter ID(如 ST/US/TSLA) |
| ∟ ∟ name | string | false | 證券名稱 |
| ∟ ∟ change | string | false | 漲跌幅(如 -0.0388) |
| ∟ ∟ last_done | string | false | 最新成交價 |
| ∟ ∟ market | string | false | 市場:US、HK、CN、SG |
| ∟ ∟ labels | string[] | false | 行業 / 主題標籤 |
| ∟ ∟ logo | string | false | Logo 圖片 URL |
| ∟ ∟ trade_status | integer | false | 交易狀態碼 |
| ∟ timestamp | string | false | 異動時間(Unix 秒,字符串格式) |
| ∟ alert_reason | string | false | 異動原因描述 |
| ∟ alert_type | integer | false | 異動類型代碼 |
| ∟ post | object | false | 關聯新聞文章(複雜對象,包含 title、description_html、published_at 等字段;無關聯新聞時為 null) |
| next_params | object | false | 翻頁參數對象,傳入下次請求以獲取下一頁 |