Class: Quickfix::UnderlyingEventPx

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingEventPx

Returns a new instance of UnderlyingEventPx.



26019
26020
26021
26022
26023
26024
26025
# File 'lib/quickfix_fields.rb', line 26019

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