financial-metrics-analysis
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseFinancial Metrics Analysis
财务指标分析
Retrieve and analyze year-over-year growth in key income statement items for public companies using the Octagon MCP server.
使用Octagon MCP服务器检索并分析上市公司关键损益表项目的同比增长情况。
Prerequisites
前提条件
Ensure Octagon MCP is configured in your AI agent (Cursor, Claude Desktop, Windsurf, etc.). See references/mcp-setup.md for installation instructions.
确保你的AI Agent(Cursor、Claude Desktop、Windsurf等)中已配置Octagon MCP。安装说明请参阅references/mcp-setup.md。
Workflow
工作流程
1. Identify Analysis Parameters
1. 确定分析参数
Determine the following before querying:
- Ticker: Stock symbol (e.g., AAPL, MSFT, GOOGL)
- Records: Number of periods to retrieve (e.g., 5 years)
- Period: FY (fiscal year) or Q (quarterly)
查询前请确定以下信息:
- Ticker:股票代码(例如:AAPL、MSFT、GOOGL)
- Records:要检索的期数(例如:5年)
- Period:FY(财年)或Q(季度)
2. Execute Query via Octagon MCP
2. 通过Octagon MCP执行查询
Use the tool with a natural language prompt:
octagon-agentRetrieve year-over-year growth in key income-statement items for <TICKER>, limited to <N> records and filtered by period <FY|Q>.MCP Call Format:
json
{
"server": "octagon-mcp",
"toolName": "octagon-agent",
"arguments": {
"prompt": "Retrieve year-over-year growth in key income-statement items for AAPL, limited to 5 records and filtered by period FY"
}
}使用工具并输入自然语言提示:
octagon-agentRetrieve year-over-year growth in key income-statement items for <TICKER>, limited to <N> records and filtered by period <FY|Q>.MCP调用格式:
json
{
"server": "octagon-mcp",
"toolName": "octagon-agent",
"arguments": {
"prompt": "Retrieve year-over-year growth in key income-statement items for AAPL, limited to 5 records and filtered by period FY"
}
}3. Expected Output
3. 预期输出
The agent returns a tabular response with YoY growth percentages:
| Year | Revenue Growth | Cost of Revenue Growth | Gross Profit Growth | Operating Income Growth | Net Income Growth |
|---|---|---|---|---|---|
| 2024 | 2.0% | 1.5% | 3.1% | 5.2% | 4.8% |
| 2023 | -2.8% | -1.2% | -4.5% | -8.1% | -10.2% |
| ... | ... | ... | ... | ... | ... |
Data Sources: octagon-companies-agent, octagon-financials-agent
Agent会返回包含同比增长率的表格响应:
| 年份 | 营收增长率 | 营收成本增长率 | 毛利润增长率 | 营业利润增长率 | 净利润增长率 |
|---|---|---|---|---|---|
| 2024 | 2.0% | 1.5% | 3.1% | 5.2% | 4.8% |
| 2023 | -2.8% | -1.2% | -4.5% | -8.1% | -10.2% |
| ... | ... | ... | ... | ... | ... |
数据来源:octagon-companies-agent、octagon-financials-agent
4. Interpret Results
4. 结果解读
See references/interpreting-results.md for guidance on:
- Reading growth percentages
- Identifying trends and inflection points
- Spotting operating leverage signals
- Comparing to industry benchmarks
关于以下内容的指导请参阅references/interpreting-results.md:
- 增长率的读取方法
- 识别趋势和拐点
- 发现经营杠杆信号
- 与行业基准对比
Example Queries
示例查询
Basic YoY Analysis:
Retrieve year-over-year growth in key income-statement items for AAPL, limited to 5 records and filtered by period FY.Quarterly Analysis:
Retrieve year-over-year growth in key income-statement items for TSLA, limited to 8 records and filtered by period Q.Extended Historical View:
Retrieve year-over-year growth in key income-statement items for MSFT, limited to 10 records and filtered by period FY.基础同比分析:
Retrieve year-over-year growth in key income-statement items for AAPL, limited to 5 records and filtered by period FY.季度分析:
Retrieve year-over-year growth in key income-statement items for TSLA, limited to 8 records and filtered by period Q.扩展历史视图:
Retrieve year-over-year growth in key income-statement items for MSFT, limited to 10 records and filtered by period FY.Key Metrics Explained
关键指标说明
| Metric | Definition |
|---|---|
| Revenue Growth | YoY change in total revenue/sales |
| Cost of Revenue Growth | YoY change in direct costs (COGS) |
| Gross Profit Growth | YoY change in Revenue minus COGS |
| Operating Income Growth | YoY change in income from operations |
| Net Income Growth | YoY change in bottom-line profit |
| 指标 | 定义 |
|---|---|
| 营收增长率 | 总营收/销售额的同比变化 |
| 营收成本增长率 | 直接成本(COGS)的同比变化 |
| 毛利润增长率 | 营收减去营收成本后的同比变化 |
| 营业利润增长率 | 营业利润的同比变化 |
| 净利润增长率 | 净利润(最终利润)的同比变化 |
Analysis Tips
分析技巧
-
Revenue vs Net Income divergence: If Net Income grows faster than Revenue, the company is improving margins or reducing costs.
-
Operating leverage: When Operating Income grows faster than Revenue, fixed costs are being spread over more sales.
-
Margin compression: If Cost of Revenue grows faster than Revenue, margins are declining.
-
Consistency: Look for companies with consistent positive growth across all metrics.
-
Trend reversals: A switch from negative to positive growth often signals a turnaround.
-
营收与净利润背离:如果净利润增长速度快于营收,说明公司正在改善利润率或降低成本。
-
经营杠杆:当营业利润增长速度快于营收时,固定成本正被分摊到更多销售额上。
-
利润率压缩:如果营收成本增长速度快于营收,说明利润率正在下降。
-
一致性:寻找所有指标均保持持续正增长的公司。
-
趋势反转:从负增长转为正增长通常标志着公司业绩好转。