Class: Quickfix::UnderlyingLegStrikePrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingLegStrikePrice

Returns a new instance of UnderlyingLegStrikePrice.



17946
17947
17948
17949
17950
17951
17952
# File 'lib/quickfix_fields.rb', line 17946

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