Class: Quickfix::UnderlyingFactor

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) ⇒ UnderlyingFactor

Returns a new instance of UnderlyingFactor.



5999
6000
6001
6002
6003
6004
6005
# File 'lib/quickfix_fields.rb', line 5999

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

Class Method Details

.fieldObject



5996
5997
5998
# File 'lib/quickfix_fields.rb', line 5996

def UnderlyingFactor.field
  return 246
end