poloniex-node-api
    Preparing search index...

    Interface ISmartOrder

    interface ISmartOrder {
        accountType: IAccountType;
        amount: string;
        clientOrderId: string;
        createTime: number;
        id: string;
        price: string;
        quantity: string;
        side: ISide;
        state: ISmartOrderState;
        stopPrice: string;
        symbol: string;
        timeInForce: ITimeInForce;
        triggeredOrder?: IOrder;
        type: ISmartOrderType;
        updateTime: number;
    }

    Hierarchy

    • Omit<
          IOrder,
          | "avgPrice"
          | "cancelReason"
          | "filledAmount"
          | "filledQuantity"
          | "loan"
          | "orderSource"
          | "state"
          | "type",
      >
      • ISmartOrder
    Index

    Properties

    accountType: IAccountType
    amount: string
    clientOrderId: string
    createTime: number
    id: string
    price: string
    quantity: string
    side: ISide
    state: ISmartOrderState
    stopPrice: string
    symbol: string
    timeInForce: ITimeInForce
    triggeredOrder?: IOrder
    type: ISmartOrderType
    updateTime: number