Class: Quickfix::StopPx

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

Returns a new instance of StopPx.



1878
1879
1880
1881
1882
1883
1884
# File 'lib/quickfix_fields.rb', line 1878

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

Class Method Details

.fieldObject



1875
1876
1877
# File 'lib/quickfix_fields.rb', line 1875

def StopPx.field
	return 99
end