Class: Quickfix::UnderlyingLegStrikePrice

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

Returns a new instance of UnderlyingLegStrikePrice.



17946
17947
17948
17949
17950
17951
17952
# File 'lib/quickfix_fields.rb', line 17946

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

Class Method Details

.fieldObject



17943
17944
17945
# File 'lib/quickfix_fields.rb', line 17943

def UnderlyingLegStrikePrice.field
  return 1340
end