Class: Quickfix::NoPriceMovementValues

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

Returns a new instance of NoPriceMovementValues.



24992
24993
24994
24995
24996
24997
24998
# File 'lib/quickfix_fields.rb', line 24992

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

Class Method Details

.fieldObject



24989
24990
24991
# File 'lib/quickfix_fields.rb', line 24989

def NoPriceMovementValues.field
  return 1920
end