Class: Quickfix::TotalTradeQty

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TotalTradeQty



57232
57233
57234
57235
57236
57237
57238
# File 'lib/quickfix_fields.rb', line 57232

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

Class Method Details

.fieldObject



57229
57230
57231
# File 'lib/quickfix_fields.rb', line 57229

def TotalTradeQty.field
  return 2367
end