Class: Quickfix::SecondaryLowLimitPrice

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

Class Method Details

.fieldObject



16266
16267
16268
# File 'lib/quickfix_fields.rb', line 16266

def SecondaryLowLimitPrice.field
  return 1221
end