Class: Quickfix::PriceMovementPoint

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ PriceMovementPoint

Returns a new instance of PriceMovementPoint.



25018
25019
25020
25021
25022
25023
25024
# File 'lib/quickfix_fields.rb', line 25018

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

Class Method Details

.fieldObject



25015
25016
25017
# File 'lib/quickfix_fields.rb', line 25015

def PriceMovementPoint.field
  return 1922
end