Class: Quickfix::LowPx

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) ⇒ LowPx

Returns a new instance of LowPx.



4218
4219
4220
4221
4222
4223
4224
# File 'lib/quickfix_fields.rb', line 4218

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

Class Method Details

.fieldObject



4215
4216
4217
# File 'lib/quickfix_fields.rb', line 4215

def LowPx.field
	return 333
end