Class: Quickfix::PriceDelta

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PriceDelta



11030
11031
11032
11033
11034
11035
11036
# File 'lib/quickfix_fields.rb', line 11030

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