Class: Quickfix::SecondaryHighLimitPrice

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

Returns a new instance of SecondaryHighLimitPrice.



16282
16283
16284
16285
16286
16287
16288
# File 'lib/quickfix_fields.rb', line 16282

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

Class Method Details

.fieldObject



16279
16280
16281
# File 'lib/quickfix_fields.rb', line 16279

def SecondaryHighLimitPrice.field
	return 1230
end