Class: Quickfix::PeggedRefPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PeggedRefPrice



14631
14632
14633
14634
14635
14636
14637
# File 'lib/quickfix_fields.rb', line 14631

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