Class: Quickfix::MDPriceLevel

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MDPriceLevel

Returns a new instance of MDPriceLevel.



12460
12461
12462
12463
12464
12465
12466
# File 'lib/quickfix_fields.rb', line 12460

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

Class Method Details

.fieldObject



12457
12458
12459
# File 'lib/quickfix_fields.rb', line 12457

def MDPriceLevel.field
  return 1023
end