Class: Quickfix::BuyVolume

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BuyVolume

Returns a new instance of BuyVolume.



17309
17310
17311
17312
17313
17314
17315
# File 'lib/quickfix_fields.rb', line 17309

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

Class Method Details

.fieldObject



17306
17307
17308
# File 'lib/quickfix_fields.rb', line 17306

def BuyVolume.field
	return 330
end