Class: Quickfix::UnderlyingIndexSeries
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::UnderlyingIndexSeries
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ UnderlyingIndexSeries
constructor
A new instance of UnderlyingIndexSeries.
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 |