Class: Quickfix::AllocPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AllocPrice

Returns a new instance of AllocPrice.



4608
4609
4610
4611
4612
4613
4614
# File 'lib/quickfix_fields.rb', line 4608

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