Class: Quickfix::UnderlyingStrikePriceBoundaryMethod

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStrikePriceBoundaryMethod

Returns a new instance of UnderlyingStrikePriceBoundaryMethod.



26500
26501
26502
26503
26504
26505
26506
# File 'lib/quickfix_fields.rb', line 26500

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

Class Method Details

.fieldObject



26497
26498
26499
# File 'lib/quickfix_fields.rb', line 26497

def UnderlyingStrikePriceBoundaryMethod.field
  return 2024
end