Class: Quickfix::LegCapPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegCapPrice

Returns a new instance of LegCapPrice.



43166
43167
43168
43169
43170
43171
43172
# File 'lib/quickfix_fields.rb', line 43166

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