Class: Quickfix::DerivativeStrikePrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DerivativeStrikePrice

Returns a new instance of DerivativeStrikePrice.



16750
16751
16752
16753
16754
16755
16756
# File 'lib/quickfix_fields.rb', line 16750

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