Class: Quickfix::DiscountFactor

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

Returns a new instance of DiscountFactor.



21859
21860
21861
21862
21863
21864
21865
# File 'lib/quickfix_fields.rb', line 21859

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

Class Method Details

.fieldObject



21856
21857
21858
# File 'lib/quickfix_fields.rb', line 21856

def DiscountFactor.field
	return 1592
end