Class: Quickfix::PriceRangePercentage

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

Returns a new instance of PriceRangePercentage.



62211
62212
62213
62214
62215
62216
62217
# File 'lib/quickfix_fields.rb', line 62211

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

Class Method Details

.fieldObject



62208
62209
62210
# File 'lib/quickfix_fields.rb', line 62208

def PriceRangePercentage.field
  return 2554
end