Class: Quickfix::UnderlyingStrikePriceDeterminationMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStrikePriceDeterminationMethod

Returns a new instance of UnderlyingStrikePriceDeterminationMethod.



26487
26488
26489
26490
26491
26492
26493
# File 'lib/quickfix_fields.rb', line 26487

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