Class: Quickfix::MarketDepth

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MarketDepth

Returns a new instance of MarketDepth.



9548
9549
9550
9551
9552
9553
9554
# File 'lib/quickfix_fields.rb', line 9548

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

Class Method Details

.fieldObject



9545
9546
9547
# File 'lib/quickfix_fields.rb', line 9545

def MarketDepth.field
  return 264
end