OHLCPoint constructor

const OHLCPoint({
  1. required DateTime timestamp,
  2. required double open,
  3. required double high,
  4. required double low,
  5. required double close,
  6. int? volume,
})

Implementation

const OHLCPoint({
  required this.timestamp,
  required this.open,
  required this.high,
  required this.low,
  required this.close,
  this.volume,
});