Class: Quickfix::UnderlyingStrikeIndex

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStrikeIndex

Returns a new instance of UnderlyingStrikeIndex.



54333
54334
54335
54336
54337
54338
54339
# File 'lib/quickfix_fields.rb', line 54333

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