Class: Quickfix::ValueOfFutures

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ValueOfFutures

Returns a new instance of ValueOfFutures.



5089
5090
5091
5092
5093
5094
5095
# File 'lib/quickfix_fields.rb', line 5089

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