Class: Quickfix::NoPriceMovements

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

Class Method Details

.fieldObject



24976
24977
24978
# File 'lib/quickfix_fields.rb', line 24976

def NoPriceMovements.field
  return 1919
end