Class: Quickfix::StandardVariance

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StandardVariance

Returns a new instance of StandardVariance.



62653
62654
62655
62656
62657
62658
62659
# File 'lib/quickfix_fields.rb', line 62653

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