Class: Quickfix::DifferentialPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DifferentialPrice

Returns a new instance of DifferentialPrice.



21651
21652
21653
21654
21655
21656
21657
# File 'lib/quickfix_fields.rb', line 21651

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