Class: Quickfix::SideQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SideQty

Returns a new instance of SideQty.



13565
13566
13567
13568
13569
13570
13571
# File 'lib/quickfix_fields.rb', line 13565

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