Skip to Content

Top Movers

Get stocks whose price movement exceeds the 20-trading-day standard deviation, with automatically correlated news to explain the move.

CLI
longbridge top-movers
longbridge top-movers --market HK --sort time

Parameters

SDK method parameters.

NameTypeRequiredDescription
marketsstring[]NOMarket list: HK, US, CN, SG; returns all markets if omitted
sortintegerNOSort order: 0=time (newest first), 1=price change, 2=hotness (default)
datestringNOTarget date in YYYY-MM-DD format; returns latest data if omitted
limitintegerNONumber 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

StatusDescriptionSchema
200SuccessTopMoversResponse
400Bad requestNone

Schemas

TopMoversResponse

NameTypeRequiredDescription
eventsobject[]falseList of moving stocks
∟ stockobjectfalseBasic stock information
∟ ∟ codestringfalseTicker code (e.g. TSLA)
∟ ∟ counter_idstringfalseCounter ID (e.g. ST/US/TSLA)
∟ ∟ namestringfalseSecurity name
∟ ∟ changestringfalsePrice change ratio (e.g. -0.0388)
∟ ∟ last_donestringfalseLatest trade price
∟ ∟ marketstringfalseMarket: US, HK, CN, SG
∟ ∟ labelsstring[]falseIndustry / theme tags
∟ ∟ logostringfalseLogo image URL
∟ ∟ trade_statusintegerfalseTrading status code
∟ timestampstringfalseEvent time (Unix seconds as string)
∟ alert_reasonstringfalseDescription of the move reason
∟ alert_typeintegerfalseMove type code
∟ postobjectfalseAssociated news article (complex object with title, description_html, published_at and other fields; null when no article is linked)
next_paramsobjectfalsePagination cursor object; pass to the next request to get the next page