Mayson Monorepo Documentation
    Preparing search index...

    Candlestick/OHLCV data structure

    interface Kline {
        openTime: number;
        open: string;
        high: string;
        low: string;
        close: string;
        volume: string;
        closeTime: number;
        quoteVolume: string;
        trades: number;
    }
    Index

    Properties

    openTime: number

    Candle open time (timestamp in ms)

    open: string

    Open price

    high: string

    High price

    low: string

    Low price

    close: string

    Close price

    volume: string

    Volume in base asset

    closeTime: number

    Candle close time (timestamp in ms)

    quoteVolume: string

    Volume in quote asset

    trades: number

    Number of trades