Class: Quickfix::TriggerNewPrice

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TriggerNewPrice

Returns a new instance of TriggerNewPrice.



15892
15893
15894
15895
15896
15897
15898
# File 'lib/quickfix_fields.rb', line 15892

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

Class Method Details

.fieldObject



15889
15890
15891
# File 'lib/quickfix_fields.rb', line 15889

def TriggerNewPrice.field
  return 1110
end