Class: Quickfix::SecondaryTradingReferencePrice

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

Returns a new instance of SecondaryTradingReferencePrice.



16477
16478
16479
16480
16481
16482
16483
# File 'lib/quickfix_fields.rb', line 16477

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

Class Method Details

.fieldObject



16474
16475
16476
# File 'lib/quickfix_fields.rb', line 16474

def SecondaryTradingReferencePrice.field
  return 1240
end