Class: Quickfix::PriceMovementValue

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

Returns a new instance of PriceMovementValue.



25005
25006
25007
25008
25009
25010
25011
# File 'lib/quickfix_fields.rb', line 25005

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

Class Method Details

.fieldObject



25002
25003
25004
# File 'lib/quickfix_fields.rb', line 25002

def PriceMovementValue.field
  return 1921
end