Class: Quickfix::BuyVolume

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BuyVolume

Returns a new instance of BuyVolume.



4179
4180
4181
4182
4183
4184
4185
# File 'lib/quickfix_fields.rb', line 4179

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