Class: Quickfix::SettlementPrice

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

Returns a new instance of SettlementPrice.



79397
79398
79399
79400
79401
79402
79403
# File 'lib/quickfix_fields.rb', line 79397

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

Class Method Details

.fieldObject



79394
79395
79396
# File 'lib/quickfix_fields.rb', line 79394

def SettlementPrice.field
  return 730
end