Class: Quickfix::ParticipationRate

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

Instance Method Summary collapse

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