Class: Quickfix::HighLimitPrice

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ HighLimitPrice

Returns a new instance of HighLimitPrice.



3607
3608
3609
3610
3611
3612
3613
# File 'lib/quickfix_fields.rb', line 3607

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

Class Method Details

.fieldObject



3604
3605
3606
# File 'lib/quickfix_fields.rb', line 3604

def HighLimitPrice.field
	return 1149
end