Class: Quickfix::PriceRangeValue

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

Returns a new instance of PriceRangeValue.



62198
62199
62200
62201
62202
62203
62204
# File 'lib/quickfix_fields.rb', line 62198

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

Class Method Details

.fieldObject



62195
62196
62197
# File 'lib/quickfix_fields.rb', line 62195

def PriceRangeValue.field
	return 2553
end