Class: Quickfix::LegCapPrice

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

Returns a new instance of LegCapPrice.



43166
43167
43168
43169
43170
43171
43172
# File 'lib/quickfix_fields.rb', line 43166

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

Class Method Details

.fieldObject



43163
43164
43165
# File 'lib/quickfix_fields.rb', line 43163

def LegCapPrice.field
  return 2200
end