Class: Quickfix::StrikeMultiplier

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrikeMultiplier

Returns a new instance of StrikeMultiplier.



13045
13046
13047
13048
13049
13050
13051
# File 'lib/quickfix_fields.rb', line 13045

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