poloniex-node-api
    Preparing search index...

    Interface IOpenOrder

    interface IOpenOrder {
        accountType: IAccountType;
        amount: string;
        avgPrice: string;
        clientOrderId: string;
        createTime: number;
        filledAmount: string;
        filledQuantity: string;
        id: string;
        loan?: boolean;
        orderSource?: IOrderSource;
        price: string;
        quantity: string;
        side: ISide;
        state: IOpenOrderState;
        symbol: string;
        timeInForce: ITimeInForce;
        type: IOrderType;
        updateTime: number;
    }

    Hierarchy

    • Omit<IOrder, "cancelReason">
      • IOpenOrder
    Index

    Properties

    accountType: IAccountType
    amount: string
    avgPrice: string
    clientOrderId: string
    createTime: number
    filledAmount: string
    filledQuantity: string
    id: string
    loan?: boolean
    orderSource?: IOrderSource
    price: string
    quantity: string
    side: ISide
    state: IOpenOrderState
    symbol: string
    timeInForce: ITimeInForce
    type: IOrderType
    updateTime: number