Class: Quickfix::PriceRangeValue

Inherits:
DoubleField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

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