Class: Quickfix::MaximumPriceDeviation

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

Returns a new instance of MaximumPriceDeviation.



75328
75329
75330
75331
75332
75333
75334
# File 'lib/quickfix_fields.rb', line 75328

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

Class Method Details

.fieldObject



75325
75326
75327
# File 'lib/quickfix_fields.rb', line 75325

def MaximumPriceDeviation.field
	return 2676
end