KLineData constructor

KLineData({
  1. double open = 0.0,
  2. double high = 0.0,
  3. double low = 0.0,
  4. double close = 0.0,
  5. double volume = 0.0,
  6. int time = 0,
})

Implementation

KLineData(
    {this.open = 0.0,
    this.high = 0.0,
    this.low = 0.0,
    this.close = 0.0,
    this.volume = 0.0,
    this.time = 0});