Class: Quickfix::StopPx

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StopPx

Returns a new instance of StopPx.



17556
17557
17558
17559
17560
17561
17562
# File 'lib/quickfix_fields.rb', line 17556

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

Class Method Details

.fieldObject



17553
17554
17555
# File 'lib/quickfix_fields.rb', line 17553

def StopPx.field
	return 99
end