Skip to main content
Calculating Equivalent Shares
Updated over 2 weeks ago

Overview

In the world of Shareholding Disclosure, many regulators are concerned not only with one’s holdings in shares (equity, but often including preferred equity or ETF “units”) but also how many “equivalent shares” one can be deemed to hold through other financial asset constructions (a term we use for holdings with more than one instrument referenced) like ADRs - composed of a DR and an underlying equity instrument, convertible bonds - composed of a convertible bond and underlying equity/preferred equity, or derivatives such as futures, swaps, options etc., which are composed of at least 2 instruments.

In addition, some regulation also requires one to include the number of equivalent shares one holds through a) derivatives that reference composites (e.g., indexes or other reference baskets like our AssetClass: StructuredProduct or Index) or b) ETFs (which are funds that track a composite/index and are modelled as our AssetClass: Unit).

How does FundApps calculate equivalent shares?

FundApps calculates the relevant number of equivalent shares for each asset (position). In order to do this for the widest range of asset constructions (including multilevel assets - where a single financial product references more than one instrument), FundApps will perform some intermediate calculations.

Equivalent Shares Adjustment

For each instrument in a construction, the equivalent shares adjustment figure is calculated. For a given instrument, the equivalent shares adjustment is essentially the number of underlying instruments it represents but can also include factors like delta adjustments. In other words, how much exposure to the underlying instrument is gained by holding this instrument itself. For example, the equivalent shares adjustment for an option would be its ContractSize, because the equivalent quantity of the underlying equity held is equal to the quantity of options held multiplied by the option's ContractSize. Likewise, the equivalent shares adjustment for a convertible bond is the ConversionRatio. For components of composites (e.g. indexes), the equivalent shares adjustment involves a bit more maths, which is outlined in our article on index-lookthrough. In summary, it is:

Price (composite, e.g. index) x EffectiveWeighting (component) / Price (component)

Cumulate Equivalent Shares Adjustment

After determining the equivalent shares adjustment factor for each instrument, the next step is to “accumulate” or multiply all equivalent shares adjustments together starting with the top/parent instrument in an asset construction, going downwards though to the most underlying instrument (typically, an Equity, PreferredEquity or Bond). Each instrument in an asset construction can be said to have an accumulated equivalent shares adjustment taking into account its position in the construction including all adjustments from parent instruments. For example, if an instrument has an equivalent shares adjustment of two, and its parent asset has an equivalent shares adjustment of ten, then the cumulate equivalent shares adjustment at this instrument level is twenty. The code representing this is found in the expression of “EquivalentShares” properties and represented as:

Cumulate(EquivalentSharesAdjustment)

Equivalent Shares

Once we reach the ultimate underlying Equity or PreferredEquity in a construction, the Cumulate Equivalent Shares Adjustment will represent the multiplication of all adjustment factors and can then be multiplied by the Quantity of the top/parent instrument to produce the Equivalent Shares for that asset construction.

This Equivalent Shares figure then represents how many of the Equity or PreferredEquity one is deemed to hold taking into account the complete asset construction.

Example

To aid in understanding how EquivalentSharesAdjustment and Cumulate(EquivalentSharesAdjustment) are used to calculate a given asset construction’s EquivalentShares, it may be helpful to outline the data in a table first and calculate each element.

We will use a multilevel example to illustrate, but the same principle can be applied to any asset construction.

Future > ADR > Equity

Level

Quantity

ContractSize

ConversionRatio

EquivalentSharesAdjustment

Cumulate
​(EquivalentSharesAdjustment)

EquivalentShares

Future

10

5

5

5

100

>ADR

2

2

10

100

>>Equity

1

10

100

  1. In columns Quantity, ContractSize and ConversionRatio, we’ve outlined the instrument data which is relevant for our calculations. These values come from the client's position file.

  2. Now we can calculate the values for EquivalentSharesAdjustment. You can find the exact expression for EquivalentSharesAdjustment inFundApps. For a future, it is ContractSize and for an ADR it is the ConversionRatio. For an Equity, there is no adjustment so it is just 1.

  3. Next we can calculate the result of the function Cumulate(EquivalentSharesAdjustment) for each instrument starting from the top/parent instrument down as this is how the Cumulate() function works.

    • For the top instrument, Future, this is the same as the EquivalentSharesAdjustment: 5

    • For the ADR, we multiply its EquivalentSharesAdjustment (2) by all parent instrument’s EquivalentSharesAdjustments. For the ADR there is only one parent, the Future, and it’s 5. So, 2 * 5 = 10. This is the Cumulate (EquivalentSharesAdjustment) for the ADR given its position in the construction.

    • For the Equity, we multiply its EquivalentSharesAdjustment (1) by all parent instrument’s EquivalentSharesAdjustments. For the Equity there are two parents, the ADR (with an EquivalentSharesAdjustments of 2) and the Future (with an EquivalentSharesAdjustments of 5). So, 1 * 2 * 5 = 10. This is the Cumulate (EquivalentSharesAdjustment) for the Equity given its position in the construction.

  4. Now we can finally calculate the EquivalentShares for the construction. This is given by the code TopQuantity * Cumulate(EquivalentSharesAdjustment) when you’ve reached the ultimate underlying Equity or PreferredEquity. From our example, TopQuantity is 10 and the Cumulate(EquivalentSharesAdjustment) for the Equity is 10. Therefore our EquivalentShares is 10*10 = 100.

Index Example

Below, we will outline a slightly more complex example for calculating EquivalentShares. This will be for a call option on an index with an underlying equity. The name of this property within FundApps is EquivalentSharesOptWarrantConvsDeltaWeighted (this can be viewed in your environment by going to the rules dropdown and selecting properties).

How to calculate:

  1. We do the the quantity of the top asset (in this case, the call option) multiplied by the equivalent shares adjustment, then multiplied by the delta of the call option

  2. The equivalent shares adjustment is calculated by doing the price of the parent asset (the index) multiplied by the weighting (the weighting of the underlying equity on the index), then divided by the price of the equity, and multiplied by the contract size (of the option).

Now, let's do the calculation using dummy data

  1. Call Option Quantity: 500

  2. Price of index: $10,000

  3. Weighting of equity on the index: 0.01

  4. Price of equity: $25.00

  5. Contract size: 25

  6. Delta: 0.1

500 x ($10,000 x 0.01 / $25) x 25 x 0.1 = 5000 shares

This would be displayed in your environment in the asset table as 5000 shares for EquivalentSharesOptWarrantConvsDeltaWeighted.

Did this answer your question?