Class: Quickfix::TradeVolume

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TradeVolume

Returns a new instance of TradeVolume.



13695
13696
13697
13698
13699
13700
13701
# File 'lib/quickfix_fields.rb', line 13695

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

Class Method Details

.fieldObject



13692
13693
13694
# File 'lib/quickfix_fields.rb', line 13692

def TradeVolume.field
	return 1020
end