Class: Quickfix::LowLimitPrice

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

Returns a new instance of LowLimitPrice.



15333
15334
15335
15336
15337
15338
15339
# File 'lib/quickfix_fields.rb', line 15333

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

Class Method Details

.fieldObject



15330
15331
15332
# File 'lib/quickfix_fields.rb', line 15330

def LowLimitPrice.field
	return 1148
end