Mayson Monorepo Documentation
    Preparing search index...

    Interface OHLCVCandle

    OHLCV candle data for charts

    interface OHLCVCandle {
        timestamp: number;
        open: number;
        high: number;
        low: number;
        close: number;
        volume: number;
    }
    Index

    Properties

    timestamp: number
    open: number
    high: number
    low: number
    close: number
    volume: number