Mayson Monorepo Documentation
    Preparing search index...

    Interface ExchangeOrder

    Exchange order

    interface ExchangeOrder {
        orderId: string;
        clientOrderId?: string;
        symbol: string;
        side: OrderSide;
        type: OrderType;
        status: OrderStatus;
        price?: string;
        stopPrice?: string;
        quantity: string;
        executedQty?: string;
        quoteQty?: string;
        timestamp: number;
    }
    Index

    Properties

    orderId: string
    clientOrderId?: string
    symbol: string
    side: OrderSide
    type: OrderType
    status: OrderStatus
    price?: string
    stopPrice?: string
    quantity: string
    executedQty?: string
    quoteQty?: string
    timestamp: number