Class: Quickfix::PricePrecision

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

Returns a new instance of PricePrecision.



57778
57779
57780
57781
57782
57783
57784
# File 'lib/quickfix_fields.rb', line 57778

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

Class Method Details

.fieldObject



57775
57776
57777
# File 'lib/quickfix_fields.rb', line 57775

def PricePrecision.field
  return 2349
end