In the mock for this year lvl 3, 5 securities are given and we must select the weighting that gives the highest return. Here is my understanding of how to do the calculations but apparently I am wrong.
NOTE: the question specified "assuming no stock splits or stock dividends for the stock components and no rebalancing"
Equal-weighted -> Easy, just average the returns. [It is, infact, required to calculate the returns for each security in the index individually for this method.]
Price-weighted -> Either A) calculate the returns for each security individually (in this case, returns were given) and then {sum ( product (price_start, return) ) } / sum(price_start) OR B) rather than using the individual returns, sum(price_end)/sum(price_start) -1
Market-cap weighted -> Either A) calculate the returns for each security individually and then {sum(product(marketCap_start, return))} / sum(marketCap_start) OR B) sum(marketCap_end)/sum(marketCap_start)
Now, in trying to find my error, I used both methods of calculation for price-weighted and market-cap weighted. Price-weighted gets the same answer with both approaches, as expected. However, given the numbers in the problem, the market cap weighted approachs give VERY DIFFERENT answers.
So, I dug into the problem a little further. The first security provides the following:
starting price = $2.35
ending price = $2.53
market cap start = $48.5
market cap end = $52.5
Assuming no stock splits or stock dividends for the stock components and no rebalancing
market cap = nshares x price -------> nshares = market cap / price
nshares (starting) = 48.5 / 2.35 = 20.64
nshares (ending) = 52.5 / 2.53 = 20.75
So … I feel this questions is a huge error. The ratio of market cap to share price _ CAN NOT CHANGE _!!! Isn’t this why a market-cap weighted index is self rebalancing?!?
In practice, if one was weighting the individual securities at time 0, the ending market cap would not be known. Therefore, the weights on the individual securities would be based solely on (market cap starting for company 1 / sum of all market caps).