Return Measurement API
Return measurement functions for portfolio analysis.
This module provides functions for measuring returns in various portfolio scenarios, including portfolios with no cash flows, portfolios with inflows and outflows, and market-neutral and leveraged portfolios.
All functions support both Python lists and NumPy arrays as inputs.
annualized_return(total_return, years)
Calculate the annualized return from a total return over a period of years.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
total_return
|
float or array - like
|
The total return over the entire period as a decimal |
required |
years
|
float or array - like
|
The number of years in the period |
required |
Returns:
Type | Description |
---|---|
float or ndarray
|
The annualized return as a decimal If array inputs are provided, returns an array of annualized returns |
Examples:
arithmetic_return(prices)
Calculate the arithmetic average return from a series of prices.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prices
|
array - like
|
Array or list of prices |
required |
Returns:
Type | Description |
---|---|
float
|
The arithmetic average return as a decimal |
Examples:
beta_adjusted_return(portfolio_return, benchmark_return, portfolio_beta)
Calculate the beta-adjusted return (alpha) of a portfolio.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
portfolio_return
|
float or array - like
|
The return of the portfolio as a decimal |
required |
benchmark_return
|
float or array - like
|
The return of the benchmark as a decimal |
required |
portfolio_beta
|
float or array - like
|
The beta of the portfolio relative to the benchmark |
required |
Returns:
Type | Description |
---|---|
float or ndarray
|
The beta-adjusted return (alpha) as a decimal If array inputs are provided, returns an array of beta-adjusted returns |
Examples:
dollar_weighted_return(cash_flows, cash_flow_dates, end_value)
Calculate the dollar-weighted return (internal rate of return) for a series of cash flows.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cash_flows
|
array - like
|
Array or list of cash flows (positive for inflows, negative for outflows) |
required |
cash_flow_dates
|
array - like
|
Array or list of dates (in days) when each cash flow occurs |
required |
end_value
|
float
|
The final value of the investment |
required |
Returns:
Type | Description |
---|---|
float
|
The dollar-weighted return as a decimal |
Examples:
geometric_return(prices)
Calculate the geometric average return from a series of prices.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prices
|
array - like
|
Array or list of prices |
required |
Returns:
Type | Description |
---|---|
float
|
The geometric average return as a decimal |
Examples:
holding_period_return(prices, dividends=None)
Calculate the holding period return for a series of prices and optional dividends.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prices
|
array - like
|
Array or list of prices over the holding period |
required |
dividends
|
array - like
|
Array or list of dividends paid during the holding period |
None
|
Returns:
Type | Description |
---|---|
float
|
The holding period return as a decimal |
Examples:
leveraged_return(unleveraged_return, leverage_ratio, borrowing_rate)
Calculate the return of a leveraged portfolio.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
unleveraged_return
|
float or array - like
|
The return of the unleveraged portfolio as a decimal |
required |
leverage_ratio
|
float or array - like
|
The leverage ratio (e.g., 2.0 for 2:1 leverage) |
required |
borrowing_rate
|
float or array - like
|
The borrowing rate as a decimal |
required |
Returns:
Type | Description |
---|---|
float or ndarray
|
The leveraged return as a decimal If array inputs are provided, returns an array of leveraged returns |
Examples:
linked_modified_dietz_return(period_returns)
Calculate the linked Modified Dietz return over multiple periods.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
period_returns
|
array - like
|
Array or list of Modified Dietz returns for each period |
required |
Returns:
Type | Description |
---|---|
float
|
The linked Modified Dietz return as a decimal |
Examples:
log_return(end_value, start_value)
Calculate the logarithmic (continuously compounded) return between two values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
end_value
|
float or array - like
|
The ending value(s) of the investment |
required |
start_value
|
float or array - like
|
The starting value(s) of the investment |
required |
Returns:
Type | Description |
---|---|
float or ndarray
|
The logarithmic return If array inputs are provided, returns an array of logarithmic returns |
Examples:
long_short_equity_return(long_portfolio_return, short_portfolio_return, long_exposure, short_exposure, risk_free_rate=0.0, short_rebate=0.0)
Calculate the return of a long-short equity portfolio.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
long_portfolio_return
|
float or array - like
|
The return of the long portfolio as a decimal |
required |
short_portfolio_return
|
float or array - like
|
The return of the short portfolio as a decimal |
required |
long_exposure
|
float or array - like
|
The exposure of the long portfolio as a decimal of NAV |
required |
short_exposure
|
float or array - like
|
The exposure of the short portfolio as a decimal of NAV |
required |
risk_free_rate
|
float or array - like
|
The risk-free rate as a decimal |
0.0
|
short_rebate
|
float or array - like
|
The rebate received on short proceeds as a decimal |
0.0
|
Returns:
Type | Description |
---|---|
float or ndarray
|
The return of the long-short equity portfolio as a decimal If array inputs are provided, returns an array of long-short equity returns |
Examples:
market_neutral_return(long_return, short_return, long_weight=0.5, short_weight=0.5, short_borrowing_cost=0.0)
Calculate the return of a market-neutral portfolio with long and short positions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
long_return
|
float or array - like
|
The return of the long portfolio as a decimal |
required |
short_return
|
float or array - like
|
The return of the short portfolio as a decimal |
required |
long_weight
|
float or array - like
|
The weight of the long portfolio |
0.5
|
short_weight
|
float or array - like
|
The weight of the short portfolio |
0.5
|
short_borrowing_cost
|
float or array - like
|
The cost of borrowing for the short position as a decimal |
0.0
|
Returns:
Type | Description |
---|---|
float or ndarray
|
The market-neutral return as a decimal If array inputs are provided, returns an array of market-neutral returns |
Examples:
modified_dietz_return(start_value, end_value, cash_flows, cash_flow_days, total_days)
Calculate the Modified Dietz return, which approximates the money-weighted return.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start_value
|
float
|
The starting value of the investment |
required |
end_value
|
float
|
The ending value of the investment |
required |
cash_flows
|
array - like
|
Array or list of cash flows (positive for inflows, negative for outflows) |
required |
cash_flow_days
|
array - like
|
Array or list of days when each cash flow occurs (day 0 is the start) |
required |
total_days
|
int
|
Total number of days in the period |
required |
Returns:
Type | Description |
---|---|
float
|
The Modified Dietz return as a decimal |
Examples:
money_weighted_return(cash_flows, cash_flow_times, final_value, initial_value=0, max_iterations=100, tolerance=1e-06)
Calculate the money-weighted return (internal rate of return) for a series of cash flows.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cash_flows
|
array - like
|
Array or list of cash flows (positive for inflows, negative for outflows) |
required |
cash_flow_times
|
array - like
|
Array or list of times (in years) when each cash flow occurs |
required |
final_value
|
float
|
The final value of the investment |
required |
initial_value
|
float
|
The initial value of the investment |
0
|
max_iterations
|
int
|
Maximum number of iterations for the numerical solver |
100
|
tolerance
|
float
|
Convergence tolerance for the numerical solver |
1e-6
|
Returns:
Type | Description |
---|---|
float
|
The money-weighted return (IRR) as a decimal |
Examples:
simple_return(end_value, start_value)
Calculate the simple return (percentage change) between two values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
end_value
|
float or array - like
|
The ending value(s) of the investment |
required |
start_value
|
float or array - like
|
The starting value(s) of the investment |
required |
Returns:
Type | Description |
---|---|
float or ndarray
|
The simple return as a decimal (e.g., 0.05 for 5%) If array inputs are provided, returns an array of simple returns |
Examples:
time_weighted_return(period_returns)
Calculate the time-weighted return from a series of period returns.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
period_returns
|
array - like
|
Array or list of returns for each period |
required |
Returns:
Type | Description |
---|---|
float
|
The time-weighted return as a decimal |
Examples:
total_return_index(prices, dividends=None)
Calculate the total return index from a series of prices and optional dividends.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prices
|
array - like
|
Array or list of prices |
required |
dividends
|
array - like
|
Array or list of dividends paid |
None
|
Returns:
Type | Description |
---|---|
ndarray
|
The total return index |
Examples: