Class: Quickfix::SellVolume

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SellVolume

Returns a new instance of SellVolume.



7247
7248
7249
7250
7251
7252
7253
# File 'lib/quickfix_fields.rb', line 7247

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

Class Method Details

.fieldObject



7244
7245
7246
# File 'lib/quickfix_fields.rb', line 7244

def SellVolume.field
	return 331
end