Class: Quickfix::Spread

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

Returns a new instance of Spread.



5674
5675
5676
5677
5678
5679
5680
# File 'lib/quickfix_fields.rb', line 5674

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

Class Method Details

.fieldObject



5671
5672
5673
# File 'lib/quickfix_fields.rb', line 5671

def Spread.field
  return 218
end