Class: Quickfix::NoRiskLimits

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoRiskLimits

Returns a new instance of NoRiskLimits.



21365
21366
21367
21368
21369
21370
21371
# File 'lib/quickfix_fields.rb', line 21365

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