Class: Quickfix::MarketCondition

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

Returns a new instance of MarketCondition.



75705
75706
75707
75708
75709
75710
75711
# File 'lib/quickfix_fields.rb', line 75705

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

Class Method Details

.fieldObject



75702
75703
75704
# File 'lib/quickfix_fields.rb', line 75702

def MarketCondition.field
  return 2705
end