poloniex-node-api
    Preparing search index...

    Interface IHistoricalSmartOrder

    interface IHistoricalSmartOrder {
        accountType: IAccountType;
        activationPrice?: string;
        amount: string;
        clientOrderId: string;
        createTime: number;
        id: string;
        limitOffset?: string;
        operator?: string;
        price: string;
        quantity: string;
        side: ISide;
        state: IHistorySmartOrderState;
        stopPrice: string;
        symbol: string;
        timeInForce: ITimeInForce;
        trailingOffset?: string;
        type: ISmartOrderType;
        updateTime: number;
    }

    Hierarchy

    • Omit<ISmartOrder, "state" | "triggeredOrder">
      • IHistoricalSmartOrder
    Index

    Properties

    accountType: IAccountType
    activationPrice?: string
    amount: string
    clientOrderId: string
    createTime: number
    id: string
    limitOffset?: string
    operator?: string
    price: string
    quantity: string
    side: ISide
    state: IHistorySmartOrderState
    stopPrice: string
    symbol: string
    timeInForce: ITimeInForce
    trailingOffset?: string
    type: ISmartOrderType
    updateTime: number