Mean Returns
Calculates the mean (average) returns for a portfolio of assets over a specified time period. This is a fundamental metric for portfolio analysis and Modern Portfolio Theory.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Portfolio | string | Yes | Comma-separated list of ticker symbols |
| Period | string | No | Time period (1Y, 3Y, 5Y, etc.) |
| Variation | string | No | Return variation type |
Notes
- Returns are typically annualized
- Used as input for portfolio optimization
Examples
=MeanReturns("AAPL,MSFT,GOOGL")=MeanReturns("SPY,QQQ,IWM", "3Y")=MeanReturns("AAPL,MSFT", "1Y", "daily")=MeanReturns(A1:A10)When to Use
- Portfolio performance analysis
- Expected return calculations
- Input for portfolio optimization
- Comparing asset returns
- Risk-adjusted return analysis
When NOT to Use
Common Issues & FAQ
Q: What period format should I use? A: Use formats like 1Y (1 year), 3Y (3 years), 6M (6 months).
Q: Are returns annualized? A: Yes, returns are typically annualized for comparison purposes.
Q: How are returns calculated? A: Based on historical price data for the specified period.
