Class: Quickfix::AvgPxPrecision

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ AvgPxPrecision

Returns a new instance of AvgPxPrecision.



8924
8925
8926
8927
8928
8929
8930
# File 'lib/quickfix_fields.rb', line 8924

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

Class Method Details

.fieldObject



8921
8922
8923
# File 'lib/quickfix_fields.rb', line 8921

def AvgPxPrecision.field
  return 74
end