Class: Quickfix::RelatedClosePrice

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

Returns a new instance of RelatedClosePrice.



62666
62667
62668
62669
62670
62671
62672
# File 'lib/quickfix_fields.rb', line 62666

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

Class Method Details

.fieldObject



62663
62664
62665
# File 'lib/quickfix_fields.rb', line 62663

def RelatedClosePrice.field
  return 2589
end