Class: Quickfix::OfferSpread

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

Returns a new instance of OfferSpread.



61938
61939
61940
61941
61942
61943
61944
# File 'lib/quickfix_fields.rb', line 61938

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

Class Method Details

.fieldObject



61935
61936
61937
# File 'lib/quickfix_fields.rb', line 61935

def OfferSpread.field
  return 2534
end