Class: Quickfix::UnderlyingCapPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingCapPrice

Returns a new instance of UnderlyingCapPrice.



26617
26618
26619
26620
26621
26622
26623
# File 'lib/quickfix_fields.rb', line 26617

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