Class: Quickfix::PriceMovementValue

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PriceMovementValue

Returns a new instance of PriceMovementValue.



25005
25006
25007
25008
25009
25010
25011
# File 'lib/quickfix_fields.rb', line 25005

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