Class: Quickfix::StartPriceRange

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

Returns a new instance of StartPriceRange.



62172
62173
62174
62175
62176
62177
62178
# File 'lib/quickfix_fields.rb', line 62172

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

Class Method Details

.fieldObject



62169
62170
62171
# File 'lib/quickfix_fields.rb', line 62169

def StartPriceRange.field
  return 2551
end