Class: Quickfix::CapPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CapPrice

Returns a new instance of CapPrice.



16009
16010
16011
16012
16013
16014
16015
# File 'lib/quickfix_fields.rb', line 16009

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