bitbadgesjs-sdk - v0.22.7
    Preparing search index...

    Interface iAssetPriceHistoryDoc<T>

    interface iAssetPriceHistoryDoc<T extends NumberType> {
        _docId: string;
        _id?: string;
        asset: string;
        high?: number;
        low?: number;
        open?: number;
        price: number;
        timeframe?: string;
        timestamp: T;
        totalLiquidity: iCosmosCoin<T>[];
    }

    Type Parameters

    Hierarchy (View Summary)

    • Doc
      • iAssetPriceHistoryDoc

    Implemented by

    Index

    Properties

    _docId: string

    A unique stringified document ID

    _id?: string

    A unique document ID (Mongo DB ObjectID)

    asset: string
    high?: number
    low?: number
    open?: number
    price: number
    timeframe?: string
    timestamp: T
    totalLiquidity: iCosmosCoin<T>[]