poloniex-node-api
    Preparing search index...

    Interface IWSOrder

    interface IWSOrder {
        channel: "orders";
        data: [
            {
                accountType: IAccountType;
                clientOrderId: string;
                createTime: number;
                eventType: IOrderEventType;
                feeCurrency: string;
                filledAmount: string;
                filledQuantity: string;
                matchRole: ""
                | IMatchRole;
                orderAmount: string;
                orderId: string;
                price: string;
                quantity: string;
                side: ISide;
                source: IOrderSource;
                state: IOrderState;
                symbol: string;
                tradeAmount: string;
                tradeFee: string;
                tradeId: string;
                tradePrice: string;
                tradeQty: string;
                tradeTime: number;
                ts: number;
                type: IOrderType;
            },
        ];
    }
    Index

    Properties

    Properties

    channel: "orders"
    data: [
        {
            accountType: IAccountType;
            clientOrderId: string;
            createTime: number;
            eventType: IOrderEventType;
            feeCurrency: string;
            filledAmount: string;
            filledQuantity: string;
            matchRole: ""
            | IMatchRole;
            orderAmount: string;
            orderId: string;
            price: string;
            quantity: string;
            side: ISide;
            source: IOrderSource;
            state: IOrderState;
            symbol: string;
            tradeAmount: string;
            tradeFee: string;
            tradeId: string;
            tradePrice: string;
            tradeQty: string;
            tradeTime: number;
            ts: number;
            type: IOrderType;
        },
    ]