Class: Quickfix::PeggedPrice

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

Class Method Details

.fieldObject



11378
11379
11380
# File 'lib/quickfix_fields.rb', line 11378

def PeggedPrice.field
  return 839
end