Class: Quickfix::UnderlyingMinPriceIncrement

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

Returns a new instance of UnderlyingMinPriceIncrement.



26526
26527
26528
26529
26530
26531
26532
# File 'lib/quickfix_fields.rb', line 26526

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

Class Method Details

.fieldObject



26523
26524
26525
# File 'lib/quickfix_fields.rb', line 26523

def UnderlyingMinPriceIncrement.field
  return 2026
end