Class: Quickfix::ParticipationRate

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ParticipationRate

Returns a new instance of ParticipationRate.



11511
11512
11513
11514
11515
11516
11517
# File 'lib/quickfix_fields.rb', line 11511

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

Class Method Details

.fieldObject



11508
11509
11510
# File 'lib/quickfix_fields.rb', line 11508

def ParticipationRate.field
  return 849
end