Class: Quickfix::StrikeIndexSpread

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



42357
42358
42359
# File 'lib/quickfix_fields.rb', line 42357

def StrikeIndexSpread.field
  return 2001
end