Class: Quickfix::UnderlyingStrikeMultiplier

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

Returns a new instance of UnderlyingStrikeMultiplier.



26461
26462
26463
26464
26465
26466
26467
# File 'lib/quickfix_fields.rb', line 26461

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

Class Method Details

.fieldObject



26458
26459
26460
# File 'lib/quickfix_fields.rb', line 26458

def UnderlyingStrikeMultiplier.field
	return 2021
end