Class: Quickfix::TradeQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeQty

Returns a new instance of TradeQty.



24147
24148
24149
24150
24151
24152
24153
# File 'lib/quickfix_fields.rb', line 24147

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