Class: Quickfix::TotalTradeQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TotalTradeQty

Returns a new instance of TotalTradeQty.



57232
57233
57234
57235
57236
57237
57238
# File 'lib/quickfix_fields.rb', line 57232

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