Class: Quickfix41::ListStatus::NoOrders

Inherits:
Quickfix::Group
  • Object
show all
Defined in:
lib/quickfix41.rb

Instance Method Summary collapse

Constructor Details

#initializeNoOrders

Returns a new instance of NoOrders.



304
305
306
307
308
309
310
311
312
313
# File 'lib/quickfix41.rb', line 304

def initialize
  order = Quickfix::IntArray.new(6)
  order[0] = 11
  order[1] = 14
  order[2] = 151
  order[3] = 84
  order[4] = 6
  order[5] = 0
  super(73, 11, order)
end