Class: Quickfix::AvgParPx

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AvgParPx

Returns a new instance of AvgParPx.



11654
11655
11656
11657
11658
11659
11660
# File 'lib/quickfix_fields.rb', line 11654

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