Class: Quickfix::NoPriceRangeRules

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoPriceRangeRules

Returns a new instance of NoPriceRangeRules.



62159
62160
62161
62162
62163
62164
62165
# File 'lib/quickfix_fields.rb', line 62159

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