Class: Quickfix::LastPx

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LastPx

Returns a new instance of LastPx.



9925
9926
9927
9928
9929
9930
9931
# File 'lib/quickfix_fields.rb', line 9925

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

Class Method Details

.fieldObject



9922
9923
9924
# File 'lib/quickfix_fields.rb', line 9922

def LastPx.field
	return 31
end