Class: Quickfix::PriceMovementPoint

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

Instance Method Summary collapse

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