Class: Quickfix::TriggerNewPrice

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TriggerNewPrice

Returns a new instance of TriggerNewPrice.



14826
14827
14828
14829
14830
14831
14832
# File 'lib/quickfix_fields.rb', line 14826

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

Class Method Details

.fieldObject



14823
14824
14825
# File 'lib/quickfix_fields.rb', line 14823

def TriggerNewPrice.field
  return 1110
end