Token导航 LogoToken导航TokenDH.com
待分类执行命令github未标认证来源可访问许可证需确认审计通过

return-calculations回报计算

Agent Skill

return-calculations 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,848

周安装

77

GitHub Stars

58

下载量

616
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:return-calculations(回报计算)
来源仓库:https://github.com/joellewis/finance_skills
仓库路径:skills/return-calculations
安装命令:
npx skills add https://github.com/joellewis/finance_skills --skill return-calculations
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/joellewis/finance_skills --skill return-calculations

简介

return-calculations 用于处理财务回报计算相关任务,辅助分析投资、收益或成本效益。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中进行金融建模、风险评估或绩效分析的场景。
  • 通过 GitHub 安装,使用 npx skills add 命令从指定仓库添加技能。
  • 使用前需确认权限范围和维护状态,注意是否触发数据访问或外部 API 调用。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Return Calculations

Purpose

This skill enables Claude to compute, explain, and compare investment return metrics across different methodologies and time horizons. It covers the full spectrum from simple holding-period returns through time-weighted and money-weighted returns, ensuring the appropriate metric is selected for each analytical context.

Layer

0 — Mathematical Foundations

Direction

retrospective

When to Use

  • User asks about calculating investment returns
  • Comparing returns across different time periods
  • Understanding arithmetic vs geometric vs log returns
  • Computing CAGR, TWR, MWR/IRR
  • Linking sub-period returns

Core Concepts

Simple (Holding Period) Return

The most basic measure of investment performance over a single period, capturing price change plus any income received.

$$R = \frac{V_{end} - V_{begin} + D}{V_{begin}}$$

where:

  • V_end = ending value
  • V_begin = beginning value
  • D = distributions (dividends, interest) received during the period

Arithmetic Mean Return

The simple average of a series of periodic returns. Represents the expected return for any single period.

$$R_a = \frac{1}{n} \sum_{i=1}^{n} R_i$$

The arithmetic mean is always greater than or equal to the geometric mean. It is an unbiased estimator of the expected single-period return but overstates the compounded growth rate.

Geometric Mean Return

The constant rate that, if earned each period, would produce the same terminal wealth as the actual sequence of returns.

$$R_g = \left(\prod_{i=1}^{n}(1 + R_i)\right)^{1/n} - 1$$

The geometric mean captures the effects of compounding and volatility drag. It is always the correct choice for describing realized multi-period growth.

Log (Continuously Compounded) Return

The natural logarithm of the wealth ratio. Log returns are time-additive, making them convenient for multi-period aggregation and statistical modeling.

$$r = \ln\left(\frac{V_{end}}{V_{begin}}\right)$$

Properties:

  • Time-additive: r_total = r_1 + r_2 +... + r_n
  • Conversion: R_simple = e^r - 1 and r = ln(1 + R_simple)
  • More symmetric and closer to normally distributed than simple returns for small magnitudes

CAGR (Compound Annual Growth Rate)

The annualized geometric return that equates the beginning value to the ending value over a given number of years.

$$CAGR = \left(\frac{V_{end}}{V_{begin}}\right)^{1/n} - 1$$

where n is measured in years. CAGR smooths out volatility and provides a single annualized growth figure.

Time-Weighted Return (TWR)

Chain-links sub-period returns calculated between each external cash flow, thereby removing the effect of cash flow timing on the measured return. TWR measures the manager's investment skill independent of investor deposit/withdrawal decisions.

$$1 + R_{TWR} = \prod_{i=1}^{n}(1 + R_i)$$

where each sub-period return R_i is computed between consecutive cash flow dates:

$$R_i = \frac{V_{end,i}}{V_{begin,i} + CF_i}$$

In practice, exact TWR requires portfolio valuation on every cash flow date. The Modified Dietz method approximates TWR when daily valuations are unavailable.

Money-Weighted Return (MWR / IRR)

The internal rate of return that sets the net present value of all cash flows (contributions, withdrawals, and terminal value) to zero.

$$0 = \sum_{t=0}^{T} \frac{CF_t}{(1 + r)^t}$$

MWR reflects the actual investor experience because it is sensitive to the timing and magnitude of cash flows. It rewards (penalizes) investors who add capital before good (bad) periods.

Annualization

Converts a return measured over any holding period to an equivalent annual rate, assuming compounding.

$$R_{annual} = (1 + R_{period})^{periods_per_year} - 1$$

For example, a 2% quarterly return annualizes to (1.02)^4 - 1 = 8.24%.

Sub-Period Linking

Combines returns from contiguous sub-periods into a single cumulative return.

$$(1 + R_{total}) = \prod_{i=1}^{n}(1 + R_i)$$

This is the foundational identity behind TWR and CAGR calculations.

Key Formulas

FormulaExpressionUse Case
Holding Period ReturnR = (V_end - V_begin + D) / V_beginSingle-period total return
Arithmetic MeanR_a = (1/n) * sum(R_i)Expected single-period return
Geometric MeanR_g = [prod(1+R_i)]^(1/n) - 1Realized compound growth rate
Log Returnr = ln(V_end / V_begin)Time-additive return for modeling
CAGR(V_end / V_begin)^(1/n) - 1Annualized growth over n years
TWRprod(1 + R_i) - 1Manager performance (cash-flow neutral)
MWR / IRRsum(CF_t / (1+r)^t) = 0, solve for rInvestor-specific experience
Annualization(1 + R_period)^(periods/year) - 1Standardize to annual basis
Sub-Period Linking(1 + R_total) = prod(1 + R_i)Combine contiguous returns

Worked Examples

Example 1: Computing CAGR from a 5-Year Investment

Given: An investment of $10,000 grows to $16,105.10 over exactly 5 years with no intermediate cash flows.

Calculate: The compound annual growth rate (CAGR).

Solution:

CAGR = (V_end / V_begin)^(1/n) - 1
CAGR = (16,105.10 / 10,000)^(1/5) - 1
CAGR = (1.610510)^(0.2) - 1
CAGR = 1.10 - 1
CAGR = 0.10 = 10%

The investment grew at a compound annual rate of 10% per year.

Verification: $10,000 * (1.10)^5 = $10,000 * 1.61051 = $16,105.10

Example 2: TWR vs MWR Divergence with Poorly Timed Cash Flow

Given: A fund has the following history:

  • Start of Year 1: Portfolio value = $100,000
  • End of Year 1: Portfolio value = $120,000 (return = +20%)
  • Start of Year 2: Investor deposits $100,000, bringing portfolio to $220,000
  • End of Year 2: Portfolio value = $198,000 (return = -10%)

Calculate: Both TWR and MWR, and explain the divergence.

Solution:

Time-Weighted Return (TWR):

Sub-period 1 return: R_1 = (120,000 - 100,000) / 100,000 = +20%
Sub-period 2 return: R_2 = (198,000 - 220,000) / 220,000 = -10%

TWR (cumulative) = (1 + 0.20) * (1 + (-0.10)) - 1
                  = 1.20 * 0.90 - 1
                  = 1.08 - 1
                  = +8.0%

TWR (annualized) = (1.08)^(1/2) - 1 = 3.92%

Money-Weighted Return (MWR / IRR): Cash flows from the investor's perspective:

  • t=0: -$100,000 (initial investment)
  • t=1: -$100,000 (additional deposit)
  • t=2: +$198,000 (terminal value)

Solve: -100,000 + (-100,000)/(1+r) + 198,000/(1+r)^2 = 0

Testing r = -0.0051 (approximately -0.51%):

-100,000 + (-100,000)/0.9949 + 198,000/0.9899
= -100,000 - 100,512.6 + 200,020.2
approx -492.4  (close to zero; actual IRR approx -0.48%)

The MWR is approximately -0.48% annualized.

Interpretation: The TWR of +3.92% annualized reflects the manager's skill: the fund gained 20% then lost 10%, netting +8% over two years. The MWR of approximately -0.48% reflects the investor's experience: more money was at risk during the losing year (Year 2) because of the large deposit, so the investor's dollar-weighted outcome was slightly negative. This divergence highlights why TWR is preferred for evaluating manager performance, while MWR better describes the specific investor's realized result.

Common Pitfalls

  • Confusing arithmetic and geometric means: the arithmetic mean is always greater than or equal to the geometric mean (AM-GM inequality). Using arithmetic mean to project compounded growth overstates terminal wealth.
  • Using arithmetic mean for multi-period compounding: always use geometric mean or CAGR when describing compound growth over multiple periods.
  • Annualizing returns from very short periods: annualizing a 2% weekly return yields (1.02)^52 - 1 = 180%, which amplifies noise and is misleading. Annualization is most meaningful for periods of at least one year.
  • Ignoring cash flow timing when TWR is appropriate: MWR conflates manager skill with investor timing decisions. Use TWR for manager evaluation.
  • Double-counting dividends: if the ending value V_end already includes reinvested dividends, do not add D separately in the holding period return formula.

Cross-References

  • time-value-of-money (core plugin, Layer 0): NPV, IRR, and discounting concepts overlap with MWR calculations
  • statistics-fundamentals (core plugin, Layer 0): Arithmetic and geometric means, return distribution analysis

Reference Implementation

See scripts/return_calculations.py for computational helpers.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.15%
按下载量换算229

Claude

30%
按下载量换算185

Cursor

17.03%
按下载量换算105

Gemini CLI

8.83%
按下载量换算54

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/joellewis/finance_skills --skill return-calculations 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills