Class: Quickfix::TradingReferencePrice

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

Returns a new instance of TradingReferencePrice.



15359
15360
15361
15362
15363
15364
15365
# File 'lib/quickfix_fields.rb', line 15359

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

Class Method Details

.fieldObject



15356
15357
15358
# File 'lib/quickfix_fields.rb', line 15356

def TradingReferencePrice.field
  return 1150
end