Interface OHLCVResponse

Response interface for OHLCV data

interface OHLCVResponse {
    data: { attributes: OHLCVDataPoint[]; id: string; type: string };
}

Properties

Properties

data: { attributes: OHLCVDataPoint[]; id: string; type: string }