Class: Quickfix::UnderlyingStrikePrice

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

Returns a new instance of UnderlyingStrikePrice.



3997
3998
3999
4000
4001
4002
4003
# File 'lib/quickfix_fields.rb', line 3997

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

Class Method Details

.fieldObject



3994
3995
3996
# File 'lib/quickfix_fields.rb', line 3994

def UnderlyingStrikePrice.field
  return 316
end