Industry Ranking
Get the industry ranking list by market and indicator. The returned Counter ID can be passed directly to industry_peers to explore the sub-sector hierarchy.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| market | string | YES | Market code: US / HK / CN / SG |
| indicator | string | YES | Ranking indicator: leading-gainer / today-trend / popularity / market-cap / revenue / revenue-growth / net-profit / net-profit-growth |
| sort_type | string | YES | Sort mode: single / multi |
| limit | uint32 | YES | Number of results to return, default 20 |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"items": [
{
"lists": [
{
"name": "Technology",
"counter_id": "BK/US/IN00258",
"chg": "0.0231",
"leading_name": "NVIDIA",
"leading_ticker": "NVDA.US",
"leading_chg": "0.0512",
"value_name": "",
"value_data": ""
}
]
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | IndustryRankResponse |
| 400 | Bad request | None |
Schemas
IndustryRankResponse
| Name | Type | Required | Description |
|---|---|---|---|
| items | object[] | false | Ranked group list |
| ∟ lists | object[] | false | Industry item list |
| ∟ ∟ name | string | false | Industry name |
| ∟ ∟ counter_id | string | false | Industry counter ID (BK/MARKET/ID format), usable in industry_peers |
| ∟ ∟ chg | string | false | Daily change (decimal) |
| ∟ ∟ leading_name | string | false | Leading stock name |
| ∟ ∟ leading_ticker | string | false | Leading stock ticker |
| ∟ ∟ leading_chg | string | false | Leading stock daily change (decimal) |
| ∟ ∟ value_name | string | false | Indicator label (may be empty depending on indicator type) |
| ∟ ∟ value_data | string | false | Indicator value (may be empty) |