Class: Quickfix::UnderlyingMinPriceIncrement

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

Instance Method Summary collapse

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