Class: Quickfix::PriceDelta

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ PriceDelta

Returns a new instance of 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

Class Method Details

.fieldObject



11027
11028
11029
# File 'lib/quickfix_fields.rb', line 11027

def PriceDelta.field
	return 811
end