Class: Quickfix::LegRepurchaseRate

Inherits:
DoubleField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegRepurchaseRate

Returns a new instance of LegRepurchaseRate.



6077
6078
6079
6080
6081
6082
6083
# File 'lib/quickfix_fields.rb', line 6077

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