Class: Quickfix::BidSpread

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

Returns a new instance of BidSpread.



61925
61926
61927
61928
61929
61930
61931
# File 'lib/quickfix_fields.rb', line 61925

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

Class Method Details

.fieldObject



61922
61923
61924
# File 'lib/quickfix_fields.rb', line 61922

def BidSpread.field
  return 2533
end