Class: Quickfix::MDPriceLevel

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MDPriceLevel

Returns a new instance of MDPriceLevel.



13734
13735
13736
13737
13738
13739
13740
# File 'lib/quickfix_fields.rb', line 13734

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