Class: Quickfix::MaxTradeVol

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ MaxTradeVol

Returns a new instance of MaxTradeVol.



15229
15230
15231
15232
15233
15234
15235
# File 'lib/quickfix_fields.rb', line 15229

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

Class Method Details

.fieldObject



15226
15227
15228
# File 'lib/quickfix_fields.rb', line 15226

def MaxTradeVol.field
	return 1140
end