Class: Quickfix::ShortQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ShortQty

Returns a new instance of ShortQty.



9678
9679
9680
9681
9682
9683
9684
# File 'lib/quickfix_fields.rb', line 9678

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