Class: Quickfix::EndTickPriceRange

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

Returns a new instance of EndTickPriceRange.



16113
16114
16115
16116
16117
16118
16119
# File 'lib/quickfix_fields.rb', line 16113

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

Class Method Details

.fieldObject



16110
16111
16112
# File 'lib/quickfix_fields.rb', line 16110

def EndTickPriceRange.field
  return 1207
end