Class: Quickfix::AvgPx

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AvgPx

Returns a new instance of AvgPx.



7091
7092
7093
7094
7095
7096
7097
# File 'lib/quickfix_fields.rb', line 7091

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

Class Method Details

.fieldObject



7088
7089
7090
# File 'lib/quickfix_fields.rb', line 7088

def AvgPx.field
	return 6
end