Class: Quickfix::EndPriceRange

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

Returns a new instance of EndPriceRange.



62185
62186
62187
62188
62189
62190
62191
# File 'lib/quickfix_fields.rb', line 62185

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

Class Method Details

.fieldObject



62182
62183
62184
# File 'lib/quickfix_fields.rb', line 62182

def EndPriceRange.field
	return 2552
end