Class: Quickfix::Spread

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Spread

Returns a new instance of Spread.



5609
5610
5611
5612
5613
5614
5615
# File 'lib/quickfix_fields.rb', line 5609

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

Class Method Details

.fieldObject



5606
5607
5608
# File 'lib/quickfix_fields.rb', line 5606

def Spread.field
  return 218
end