Class: Quickfix::TradeDate

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

Returns a new instance of TradeDate.



1670
1671
1672
1673
1674
1675
1676
# File 'lib/quickfix_fields.rb', line 1670

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

Class Method Details

.fieldObject



1667
1668
1669
# File 'lib/quickfix_fields.rb', line 1667

def TradeDate.field
  return 75
end