Class EquityStrike

java.lang.Object
net.finmath.smartcontract.product.xml.EquityStrike
Direct Known Subclasses:
GenericOptionStrike

public class EquityStrike extends Object
A type for defining the strike price for an equity option. The strike price is either: (i) in respect of an index option transaction, the level of the relevant index specified or otherwise determined in the transaction; or (ii) in respect of a share option transaction, the price per share specified or otherwise determined in the transaction. This can be expressed either as a percentage of notional amount or as an absolute value.

Java class for EquityStrike complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="EquityStrike">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <choice>
           <element name="strikePrice" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
           <sequence>
             <element name="strikePercentage" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
             <element name="strikeDeterminationDate" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableOrRelativeDate" minOccurs="0"/>
           </sequence>
         </choice>
         <element name="currency" type="{http://www.fpml.org/FpML-5/confirmation}Currency" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>