Class: Quickfix::PeggedPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PeggedPrice

Returns a new instance of PeggedPrice.



11381
11382
11383
11384
11385
11386
11387
# File 'lib/quickfix_fields.rb', line 11381

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