Class: Quickfix::OrderEventQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrderEventQty

Returns a new instance of OrderEventQty.



23536
23537
23538
23539
23540
23541
23542
# File 'lib/quickfix_fields.rb', line 23536

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