Class: Quickfix::AllocPrice

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AllocPrice

Returns a new instance of AllocPrice.



11654
11655
11656
11657
11658
11659
11660
# File 'lib/quickfix_fields.rb', line 11654

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

Class Method Details

.fieldObject



11651
11652
11653
# File 'lib/quickfix_fields.rb', line 11651

def AllocPrice.field
	return 366
end