Class: Quickfix::RiskLimitAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RiskLimitAmount

Returns a new instance of RiskLimitAmount.



20585
20586
20587
20588
20589
20590
20591
# File 'lib/quickfix_fields.rb', line 20585

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