Class: Quickfix::UnderlyingIndexSeries

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingIndexSeries

Returns a new instance of UnderlyingIndexSeries.



26227
26228
26229
26230
26231
26232
26233
# File 'lib/quickfix_fields.rb', line 26227

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

Class Method Details

.fieldObject



26224
26225
26226
# File 'lib/quickfix_fields.rb', line 26224

def UnderlyingIndexSeries.field
  return 2003
end