Longbridge OpenAPI SDK
    Preparing search index...

    Interface AnomalyItem

    One market anomaly event (e.g. large block trade, margin buying surge)

    interface AnomalyItem {
        symbol: string;
        name: string;
        alertName: string;
        alertTime: number;
        changeValues: string[];
        emotion: number;
    }
    Index

    Properties

    symbol: string

    Security symbol

    name: string

    Security name

    alertName: string

    Anomaly type name, e.g. "大宗交易", "融资买入"

    alertTime: number

    Time of the anomaly (unix timestamp in milliseconds)

    changeValues: string[]

    Change values — items are accessed as strings by the client

    emotion: number

    Sentiment direction: 1 = positive/up, 2 = negative/down