Class: Quickfix::MarketDepth

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MarketDepth

Returns a new instance of MarketDepth.



3321
3322
3323
3324
3325
3326
3327
# File 'lib/quickfix_fields.rb', line 3321

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