Class: Quickfix::MarginAmt

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) ⇒ MarginAmt

Returns a new instance of MarginAmt.



20234
20235
20236
20237
20238
20239
20240
# File 'lib/quickfix_fields.rb', line 20234

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

Class Method Details

.fieldObject



20231
20232
20233
# File 'lib/quickfix_fields.rb', line 20231

def MarginAmt.field
  return 1645
end