Unusual Items
Detect unusual market movements — price spikes, volume surges, and other abnormal trading activity.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| market | string | YES | Market code: US, HK, SH, SZ, SG |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"all_off": false,
"changes": [
{
"symbol": "TSLA.US",
"name": "Tesla Inc.",
"alert_name": "大宗交易",
"alert_time": 1778198400000,
"emotion": 1,
"change_values": [
"+5.2%"
]
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | AnomalyResponse |
| 400 | Bad request | None |
Schemas
AnomalyResponse
| Name | Type | Required | Description |
|---|---|---|---|
| all_off | boolean | false | Whether anomaly alerts are globally disabled |
| changes | object[] | false | List of market anomaly events |
| ∟ symbol | string | true | Security symbol |
| ∟ name | string | false | Security name |
| ∟ alert_name | string | false | Anomaly type name |
| ∟ alert_time | integer | false | Anomaly time (Unix timestamp, ms) |
| ∟ emotion | integer | false | Sentiment: 1=positive/up, 2=negative/down |
| ∟ change_values | string[] | false | Change value strings |

