Class: Quickfix::DividendYield

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

Returns a new instance of DividendYield.



18323
18324
18325
18326
18327
18328
18329
# File 'lib/quickfix_fields.rb', line 18323

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

Class Method Details

.fieldObject



18320
18321
18322
# File 'lib/quickfix_fields.rb', line 18320

def DividendYield.field
	return 1380
end