Class: Quickfix::StrikeMultiplier

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrikeMultiplier

Returns a new instance of StrikeMultiplier.



6714
6715
6716
6717
6718
6719
6720
# File 'lib/quickfix_fields.rb', line 6714

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

Class Method Details

.fieldObject



6711
6712
6713
# File 'lib/quickfix_fields.rb', line 6711

def StrikeMultiplier.field
	return 967
end