Interface CandleStick

interface CandleStick {
    closePrice: BidAsk;
    highPrice: BidAsk;
    lastTradedVolume: number;
    lowPrice: BidAsk;
    openPrice: BidAsk;
    snapshotTime: string;
    snapshotTimeUTC: string;
}

Properties

closePrice: BidAsk
highPrice: BidAsk
lastTradedVolume: number
lowPrice: BidAsk
openPrice: BidAsk
snapshotTime: string
snapshotTimeUTC: string