Class: Quickfix::TradeVolume

Inherits:
DoubleField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeVolume

Returns a new instance of TradeVolume.



487
488
489
490
491
492
493
# File 'lib/quickfix_fields.rb', line 487

def initialize(data = nil)
  if( data == nil )
    super(1020)
  else
    super(1020, data)
  end
end

Class Method Details

.fieldObject



484
485
486
# File 'lib/quickfix_fields.rb', line 484

def TradeVolume.field
  return 1020
end