Class: Quickfix::SecondaryLowLimitPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecondaryLowLimitPrice

Returns a new instance of SecondaryLowLimitPrice.



16269
16270
16271
16272
16273
16274
16275
# File 'lib/quickfix_fields.rb', line 16269

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