Class: Quickfix::OpenInterest

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

Returns a new instance of OpenInterest.



10211
10212
10213
10214
10215
10216
10217
# File 'lib/quickfix_fields.rb', line 10211

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

Class Method Details

.fieldObject



10208
10209
10210
# File 'lib/quickfix_fields.rb', line 10208

def OpenInterest.field
  return 746
end