Class: Quickfix::TradingReferencePrice

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradingReferencePrice

Returns a new instance of TradingReferencePrice.



6922
6923
6924
6925
6926
6927
6928
# File 'lib/quickfix_fields.rb', line 6922

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

Class Method Details

.fieldObject



6919
6920
6921
# File 'lib/quickfix_fields.rb', line 6919

def TradingReferencePrice.field
  return 1150
end