Class: Quickfix::UnderlyingPx

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingPx

Returns a new instance of UnderlyingPx.



11017
11018
11019
11020
11021
11022
11023
# File 'lib/quickfix_fields.rb', line 11017

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