UNPKG

ccxws

Version:

Websocket client for 37 cryptocurrency exchanges

15 lines 421 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Candle = void 0; class Candle { constructor(timestampMs, open, high, low, close, volume) { this.timestampMs = timestampMs; this.open = open; this.high = high; this.low = low; this.close = close; this.volume = volume; } } exports.Candle = Candle; //# sourceMappingURL=Candle.js.map