Class: Quickfix::MarketID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ MarketID

Returns a new instance of MarketID.



17270
17271
17272
17273
17274
17275
17276
# File 'lib/quickfix_fields.rb', line 17270

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

Class Method Details

.fieldObject



17267
17268
17269
# File 'lib/quickfix_fields.rb', line 17267

def MarketID.field
  return 1301
end