Class: Quickfix::RiskFreeRate

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

Returns a new instance of RiskFreeRate.



15866
15867
15868
15869
15870
15871
15872
# File 'lib/quickfix_fields.rb', line 15866

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

Class Method Details

.fieldObject



15863
15864
15865
# File 'lib/quickfix_fields.rb', line 15863

def RiskFreeRate.field
  return 1190
end