Interface IDEXTradeEventData

  • Trade updates on the WebSocket include all IDEXTrade properties as well as the market symbol that corresponds to the trade.

See

related IDEXTrade

interface IDEXTradeEventData {
    fillId: string;
    price: string;
    quantity: string;
    quoteQuantity: string;
    time: number;
    makerSide: OrderSide;
    sequence: number;
    market: string;
}

Hierarchy (view full)

Properties

fillId: string

Trade identifier

price: string

Price of the trade in quote terms

quantity: string

Quantity of the trade in base terms

quoteQuantity: string

Quantity of the trade in quote terms

time: number

Timestamp of the trade

makerSide: OrderSide

Maker side of the trade, buy or sell

sequence: number

Fill sequence number of the trade

market: string

Market Symbol