Class: Quickfix::HighLimitPrice

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

Class Method Details

.fieldObject



15343
15344
15345
# File 'lib/quickfix_fields.rb', line 15343

def HighLimitPrice.field
  return 1149
end