Class: Quickfix::TradePriceCondition

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

Returns a new instance of TradePriceCondition.



24095
24096
24097
24098
24099
24100
24101
# File 'lib/quickfix_fields.rb', line 24095

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

Class Method Details

.fieldObject



24092
24093
24094
# File 'lib/quickfix_fields.rb', line 24092

def TradePriceCondition.field
  return 1839
end