Evaluates the expected return of a Portfolio where the expected returns of the assets within the portfolio and the weighting of those asset is known.
weights[i]
is the weight for i
-th asset. Note that, weights[0] + weights[1] + ... + weights[N - 1] = 1
, where each weight lies in the interval [0,1]
.n
-th terms is expected return of the n
-th asset from with the portfolio is constructed.When applying this method you will need to provide:
The weights of the assets can be evaluated by dividing the market value
of an asset within the portfolio by the total market value of the entire portfolio.
For example, if a given asset within the portfolio has a market value of $200,000
;
and the total portfolio (including the asset being considered) has a market value of
$1,000,000
; then the market weighting of the asset is 0.2
.
In order to evaluate the expected returns of the asset we suggest that you use one of the following methods from this class, namely:
AssetParameters Class | WebCab.Libraries.Finance.Portfolio Namespace