Exemple #1
0
 public Candlestick()
 {
     this.Time = new DateTime();
     this.Bid  = new CandlestickData();
     this.Ask  = new CandlestickData();
     this.Mid  = new CandlestickData();
 }
Exemple #2
0
 public Candlestick(DateTime time, CandlestickData bid, CandlestickData ask, CandlestickData mid, int volume, bool complete)
 {
     this.Time     = time;
     this.Bid      = bid;
     this.Ask      = ask;
     this.Mid      = mid;
     this.Volume   = volume;
     this.Complete = complete;
 }