Example #1
0
 public OHLCVol(decimal open, decimal high, decimal low, decimal close, int volume = 0, int precision = 6)
 {
     _ohlc   = new OHLC(open, high, low, close, precision);
     _volume = volume;
 }
Example #2
0
 public OHLCVol(Price open, Price high, Price low, Price close, int volume = 0)
 {
     _ohlc   = new OHLC(open, high, low, close);
     _volume = volume;
 }