Class: Quickfix::OrderAvgPx

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) ⇒ OrderAvgPx

Returns a new instance of OrderAvgPx.



10887
10888
10889
10890
10891
10892
10893
# File 'lib/quickfix_fields.rb', line 10887

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

Class Method Details

.fieldObject



10884
10885
10886
# File 'lib/quickfix_fields.rb', line 10884

def OrderAvgPx.field
  return 799
end