Class: Quickfix::CurrentWorkingPrice

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

Returns a new instance of CurrentWorkingPrice.



77551
77552
77553
77554
77555
77556
77557
# File 'lib/quickfix_fields.rb', line 77551

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

Class Method Details

.fieldObject



77548
77549
77550
# File 'lib/quickfix_fields.rb', line 77548

def CurrentWorkingPrice.field
	return 2838
end