Class: Quickfix::DividendInitialRate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DividendInitialRate

Returns a new instance of DividendInitialRate.



63563
63564
63565
63566
63567
63568
63569
# File 'lib/quickfix_fields.rb', line 63563

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