Class: Quickfix::BenchmarkPrice

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

Returns a new instance of BenchmarkPrice.



9132
9133
9134
9135
9136
9137
9138
# File 'lib/quickfix_fields.rb', line 9132

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

Class Method Details

.fieldObject



9129
9130
9131
# File 'lib/quickfix_fields.rb', line 9129

def BenchmarkPrice.field
  return 662
end