Class: Quickfix::FairValue

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

Returns a new instance of FairValue.



5063
5064
5065
5066
5067
5068
5069
# File 'lib/quickfix_fields.rb', line 5063

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

Class Method Details

.fieldObject



5060
5061
5062
# File 'lib/quickfix_fields.rb', line 5060

def FairValue.field
  return 406
end