Class: Quickfix::UnderlyingStrikePriceBoundaryPrecision

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

Returns a new instance of UnderlyingStrikePriceBoundaryPrecision.



26513
26514
26515
26516
26517
26518
26519
# File 'lib/quickfix_fields.rb', line 26513

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

Class Method Details

.fieldObject



26510
26511
26512
# File 'lib/quickfix_fields.rb', line 26510

def UnderlyingStrikePriceBoundaryPrecision.field
	return 2025
end