Class: Quickfix::DifferentialPrice

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

Returns a new instance of DifferentialPrice.



21651
21652
21653
21654
21655
21656
21657
# File 'lib/quickfix_fields.rb', line 21651

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

Class Method Details

.fieldObject



21648
21649
21650
# File 'lib/quickfix_fields.rb', line 21648

def DifferentialPrice.field
  return 1522
end