Class: Quickfix::StrikeIndexSpread

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrikeIndexSpread

Returns a new instance of StrikeIndexSpread.



42360
42361
42362
42363
42364
42365
42366
# File 'lib/quickfix_fields.rb', line 42360

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