Class: Quickfix::SidePriceDifferential

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SidePriceDifferential

Returns a new instance of SidePriceDifferential.



21950
21951
21952
21953
21954
21955
21956
# File 'lib/quickfix_fields.rb', line 21950

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