Class: Quickfix::NoAllocCommissions

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoAllocCommissions

Returns a new instance of NoAllocCommissions.



63017
63018
63019
63020
63021
63022
63023
# File 'lib/quickfix_fields.rb', line 63017

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