Class: Quickfix::BenchmarkPrice

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

Instance Method Summary collapse

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