Class: Quickfix::NoPriceMovements

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoPriceMovements

Returns a new instance of NoPriceMovements.



24979
24980
24981
24982
24983
24984
24985
# File 'lib/quickfix_fields.rb', line 24979

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