Class: Quickfix::PriceImprovement

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PriceImprovement

Returns a new instance of PriceImprovement.



8612
8613
8614
8615
8616
8617
8618
# File 'lib/quickfix_fields.rb', line 8612

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