Class: Quickfix::MarketDepth

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



3318
3319
3320
# File 'lib/quickfix_fields.rb', line 3318

def MarketDepth.field
  return 264
end