Class: Quickfix::HighLimitPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ HighLimitPrice

Returns a new instance of HighLimitPrice.



15346
15347
15348
15349
15350
15351
15352
# File 'lib/quickfix_fields.rb', line 15346

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