Class: Quickfix::MinPriceIncrement

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

Returns a new instance of MinPriceIncrement.



13071
13072
13073
13074
13075
13076
13077
# File 'lib/quickfix_fields.rb', line 13071

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

Class Method Details

.fieldObject



13068
13069
13070
# File 'lib/quickfix_fields.rb', line 13068

def MinPriceIncrement.field
  return 969
end