@openfinclaw/findoo-datahub-plugin 2026.3.2 → 2026.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DESIGN.md +492 -151
- package/_vendor/claude-skills-finance/SKILL.md +192 -0
- package/_vendor/claude-skills-finance/assets/dcf_analysis_template.md +184 -0
- package/_vendor/claude-skills-finance/assets/expected_output.json +161 -0
- package/_vendor/claude-skills-finance/assets/forecast_report_template.md +177 -0
- package/_vendor/claude-skills-finance/assets/sample_financial_data.json +219 -0
- package/_vendor/claude-skills-finance/assets/variance_report_template.md +122 -0
- package/_vendor/claude-skills-finance/references/financial-ratios-guide.md +396 -0
- package/_vendor/claude-skills-finance/references/forecasting-best-practices.md +294 -0
- package/_vendor/claude-skills-finance/references/valuation-methodology.md +255 -0
- package/_vendor/claude-skills-finance/scripts/budget_variance_analyzer.py +406 -0
- package/_vendor/claude-skills-finance/scripts/dcf_valuation.py +449 -0
- package/_vendor/claude-skills-finance/scripts/forecast_builder.py +494 -0
- package/_vendor/claude-skills-finance/scripts/ratio_calculator.py +432 -0
- package/index.ts +332 -14
- package/openclaw.plugin.json +2 -2
- package/package.json +1 -1
- package/references/cn-market-specifics.md +165 -0
- package/references/crypto-analysis.md +635 -0
- package/references/financial-ratios-cn.md +452 -0
- package/references/hk-market-specifics.md +166 -0
- package/references/macro-cycle-cn.md +409 -0
- package/references/valuation-cn.md +427 -0
- package/skills/README.md +294 -0
- package/skills/a-concept-cycle/skill.md +200 -0
- package/skills/a-convertible-arb/skill.md +294 -0
- package/skills/a-dividend-king/skill.md +187 -0
- package/skills/a-earnings-season/skill.md +221 -0
- package/skills/a-index-timer/skill.md +192 -0
- package/skills/a-ipo-new/skill.md +297 -0
- package/skills/a-northbound-decoder/skill.md +185 -0
- package/skills/a-quant-board/skill.md +286 -0
- package/skills/a-share/skill.md +347 -0
- package/skills/a-share-radar/skill.md +185 -0
- package/skills/cross-asset/skill.md +202 -0
- package/skills/crypto/skill.md +269 -0
- package/skills/crypto-altseason/skill.md +208 -0
- package/skills/crypto-btc-cycle/skill.md +231 -0
- package/skills/crypto-defi-yield/skill.md +181 -0
- package/skills/crypto-funding-arb/skill.md +158 -0
- package/skills/crypto-stablecoin-flow/skill.md +149 -0
- package/skills/data-query/skill.md +124 -30
- package/skills/derivatives/skill.md +188 -35
- package/skills/etf-fund/skill.md +216 -0
- package/skills/factor-screen/skill.md +186 -0
- package/skills/hk-china-internet/skill.md +190 -0
- package/skills/hk-dividend-harvest/skill.md +192 -0
- package/skills/hk-hsi-pulse/skill.md +154 -0
- package/skills/hk-southbound-alpha/skill.md +163 -0
- package/skills/hk-stock/skill.md +295 -0
- package/skills/macro/skill.md +244 -53
- package/skills/risk-monitor/skill.md +171 -0
- package/skills/us-dividend/skill.md +162 -0
- package/skills/us-earnings/skill.md +149 -0
- package/skills/us-equity/skill.md +235 -0
- package/skills/us-etf/skill.md +261 -0
- package/skills/us-sector-rotation/skill.md +223 -0
- package/src/config.ts +4 -5
- package/src/datahub-client.test.ts +4 -7
- package/src/datahub-client.ts +6 -1
- package/src/register-tools.ts +720 -0
- package/src/tool-helpers.ts +89 -0
- package/test/e2e/l3-gateway-bootstrap.live.test.ts +339 -0
- package/test/e2e/l4-skill-tool-chain.live.test.ts +465 -0
- package/skills/crypto-defi/skill.md +0 -69
- package/skills/equity/skill.md +0 -64
- package/skills/market-radar/skill.md +0 -47
|
@@ -0,0 +1,396 @@
|
|
|
1
|
+
# Financial Ratios Guide
|
|
2
|
+
|
|
3
|
+
Comprehensive reference for financial ratio analysis covering formulas, interpretation, and industry benchmarks across five categories.
|
|
4
|
+
|
|
5
|
+
## 1. Profitability Ratios
|
|
6
|
+
|
|
7
|
+
Measure a company's ability to generate earnings relative to revenue, assets, or equity.
|
|
8
|
+
|
|
9
|
+
### Return on Equity (ROE)
|
|
10
|
+
|
|
11
|
+
**Formula:** Net Income / Total Shareholders' Equity
|
|
12
|
+
|
|
13
|
+
**Interpretation:**
|
|
14
|
+
|
|
15
|
+
- Measures how effectively management uses equity to generate profits
|
|
16
|
+
- Higher ROE indicates more efficient use of equity capital
|
|
17
|
+
- Compare against cost of equity - ROE should exceed it
|
|
18
|
+
|
|
19
|
+
**Benchmarks:**
|
|
20
|
+
| Rating | Range |
|
|
21
|
+
|--------|-------|
|
|
22
|
+
| Below Average | < 8% |
|
|
23
|
+
| Acceptable | 8% - 15% |
|
|
24
|
+
| Good | 15% - 25% |
|
|
25
|
+
| Excellent | > 25% |
|
|
26
|
+
|
|
27
|
+
**Caveats:** High leverage can inflate ROE. Use DuPont decomposition (ROE = Margin x Turnover x Leverage) for deeper analysis.
|
|
28
|
+
|
|
29
|
+
### Return on Assets (ROA)
|
|
30
|
+
|
|
31
|
+
**Formula:** Net Income / Total Assets
|
|
32
|
+
|
|
33
|
+
**Interpretation:**
|
|
34
|
+
|
|
35
|
+
- Measures how efficiently assets generate profit
|
|
36
|
+
- Asset-light businesses naturally have higher ROA
|
|
37
|
+
- Compare within industry only
|
|
38
|
+
|
|
39
|
+
**Benchmarks:**
|
|
40
|
+
| Rating | Range |
|
|
41
|
+
|--------|-------|
|
|
42
|
+
| Below Average | < 3% |
|
|
43
|
+
| Acceptable | 3% - 6% |
|
|
44
|
+
| Good | 6% - 12% |
|
|
45
|
+
| Excellent | > 12% |
|
|
46
|
+
|
|
47
|
+
### Gross Margin
|
|
48
|
+
|
|
49
|
+
**Formula:** (Revenue - COGS) / Revenue
|
|
50
|
+
|
|
51
|
+
**Interpretation:**
|
|
52
|
+
|
|
53
|
+
- Measures production efficiency and pricing power
|
|
54
|
+
- Declining gross margin may signal competitive pressure or cost inflation
|
|
55
|
+
- Critical for evaluating business model sustainability
|
|
56
|
+
|
|
57
|
+
**Benchmarks by Industry:**
|
|
58
|
+
| Industry | Typical Range |
|
|
59
|
+
|----------|--------------|
|
|
60
|
+
| Software/SaaS | 70% - 85% |
|
|
61
|
+
| Financial Services | 50% - 70% |
|
|
62
|
+
| Retail | 25% - 45% |
|
|
63
|
+
| Manufacturing | 20% - 40% |
|
|
64
|
+
| Grocery | 25% - 30% |
|
|
65
|
+
|
|
66
|
+
### Operating Margin
|
|
67
|
+
|
|
68
|
+
**Formula:** Operating Income / Revenue
|
|
69
|
+
|
|
70
|
+
**Interpretation:**
|
|
71
|
+
|
|
72
|
+
- Measures operational efficiency after all operating expenses
|
|
73
|
+
- Excludes interest and taxes for better operational comparison
|
|
74
|
+
- Indicates management effectiveness in controlling costs
|
|
75
|
+
|
|
76
|
+
**Benchmarks:**
|
|
77
|
+
| Rating | Range |
|
|
78
|
+
|--------|-------|
|
|
79
|
+
| Below Average | < 5% |
|
|
80
|
+
| Acceptable | 5% - 15% |
|
|
81
|
+
| Good | 15% - 25% |
|
|
82
|
+
| Excellent | > 25% |
|
|
83
|
+
|
|
84
|
+
### Net Margin
|
|
85
|
+
|
|
86
|
+
**Formula:** Net Income / Revenue
|
|
87
|
+
|
|
88
|
+
**Interpretation:**
|
|
89
|
+
|
|
90
|
+
- Bottom-line profitability after all expenses
|
|
91
|
+
- Affected by tax strategy, capital structure, and one-time items
|
|
92
|
+
- Most comprehensive profitability measure
|
|
93
|
+
|
|
94
|
+
**Benchmarks:**
|
|
95
|
+
| Rating | Range |
|
|
96
|
+
|--------|-------|
|
|
97
|
+
| Below Average | < 3% |
|
|
98
|
+
| Acceptable | 3% - 10% |
|
|
99
|
+
| Good | 10% - 20% |
|
|
100
|
+
| Excellent | > 20% |
|
|
101
|
+
|
|
102
|
+
## 2. Liquidity Ratios
|
|
103
|
+
|
|
104
|
+
Measure a company's ability to meet short-term obligations.
|
|
105
|
+
|
|
106
|
+
### Current Ratio
|
|
107
|
+
|
|
108
|
+
**Formula:** Current Assets / Current Liabilities
|
|
109
|
+
|
|
110
|
+
**Interpretation:**
|
|
111
|
+
|
|
112
|
+
- Measures short-term solvency
|
|
113
|
+
- Too high may indicate inefficient asset use
|
|
114
|
+
- Too low signals potential liquidity risk
|
|
115
|
+
|
|
116
|
+
**Benchmarks:**
|
|
117
|
+
| Rating | Range |
|
|
118
|
+
|--------|-------|
|
|
119
|
+
| Concern | < 1.0 |
|
|
120
|
+
| Acceptable | 1.0 - 1.5 |
|
|
121
|
+
| Healthy | 1.5 - 3.0 |
|
|
122
|
+
| Excessive | > 3.0 |
|
|
123
|
+
|
|
124
|
+
### Quick Ratio (Acid Test)
|
|
125
|
+
|
|
126
|
+
**Formula:** (Current Assets - Inventory) / Current Liabilities
|
|
127
|
+
|
|
128
|
+
**Interpretation:**
|
|
129
|
+
|
|
130
|
+
- More conservative than current ratio
|
|
131
|
+
- Excludes inventory (least liquid current asset)
|
|
132
|
+
- Critical for businesses with slow-moving inventory
|
|
133
|
+
|
|
134
|
+
**Benchmarks:**
|
|
135
|
+
| Rating | Range |
|
|
136
|
+
|--------|-------|
|
|
137
|
+
| Concern | < 0.8 |
|
|
138
|
+
| Acceptable | 0.8 - 1.0 |
|
|
139
|
+
| Healthy | 1.0 - 2.0 |
|
|
140
|
+
| Excessive | > 2.0 |
|
|
141
|
+
|
|
142
|
+
### Cash Ratio
|
|
143
|
+
|
|
144
|
+
**Formula:** Cash & Equivalents / Current Liabilities
|
|
145
|
+
|
|
146
|
+
**Interpretation:**
|
|
147
|
+
|
|
148
|
+
- Most conservative liquidity measure
|
|
149
|
+
- Indicates ability to pay obligations with cash on hand
|
|
150
|
+
- Particularly important during credit crunches
|
|
151
|
+
|
|
152
|
+
**Benchmarks:**
|
|
153
|
+
| Rating | Range |
|
|
154
|
+
|--------|-------|
|
|
155
|
+
| Low | < 0.2 |
|
|
156
|
+
| Adequate | 0.2 - 0.5 |
|
|
157
|
+
| Strong | 0.5 - 1.0 |
|
|
158
|
+
| Excessive | > 1.0 |
|
|
159
|
+
|
|
160
|
+
## 3. Leverage Ratios
|
|
161
|
+
|
|
162
|
+
Measure the extent to which a company uses debt financing.
|
|
163
|
+
|
|
164
|
+
### Debt-to-Equity Ratio
|
|
165
|
+
|
|
166
|
+
**Formula:** Total Debt / Total Shareholders' Equity
|
|
167
|
+
|
|
168
|
+
**Interpretation:**
|
|
169
|
+
|
|
170
|
+
- Measures financial leverage and risk
|
|
171
|
+
- Higher ratio = more reliance on debt financing
|
|
172
|
+
- Industry norms vary significantly (utilities vs tech)
|
|
173
|
+
|
|
174
|
+
**Benchmarks:**
|
|
175
|
+
| Rating | Range |
|
|
176
|
+
|--------|-------|
|
|
177
|
+
| Conservative | < 0.3 |
|
|
178
|
+
| Moderate | 0.3 - 0.8 |
|
|
179
|
+
| Elevated | 0.8 - 2.0 |
|
|
180
|
+
| High Risk | > 2.0 |
|
|
181
|
+
|
|
182
|
+
### Interest Coverage Ratio
|
|
183
|
+
|
|
184
|
+
**Formula:** Operating Income (EBIT) / Interest Expense
|
|
185
|
+
|
|
186
|
+
**Interpretation:**
|
|
187
|
+
|
|
188
|
+
- Measures ability to service debt from operating earnings
|
|
189
|
+
- Below 1.5x is a red flag for lenders
|
|
190
|
+
- Critical for credit analysis
|
|
191
|
+
|
|
192
|
+
**Benchmarks:**
|
|
193
|
+
| Rating | Range |
|
|
194
|
+
|--------|-------|
|
|
195
|
+
| Distressed | < 2.0 |
|
|
196
|
+
| Adequate | 2.0 - 5.0 |
|
|
197
|
+
| Strong | 5.0 - 10.0 |
|
|
198
|
+
| Very Strong | > 10.0 |
|
|
199
|
+
|
|
200
|
+
### Debt Service Coverage Ratio (DSCR)
|
|
201
|
+
|
|
202
|
+
**Formula:** Operating Cash Flow / Total Debt Service
|
|
203
|
+
|
|
204
|
+
**Interpretation:**
|
|
205
|
+
|
|
206
|
+
- Cash-based measure of debt servicing capacity
|
|
207
|
+
- Includes principal repayments (unlike interest coverage)
|
|
208
|
+
- Required by many loan covenants
|
|
209
|
+
|
|
210
|
+
**Benchmarks:**
|
|
211
|
+
| Rating | Range |
|
|
212
|
+
|--------|-------|
|
|
213
|
+
| Default Risk | < 1.0 |
|
|
214
|
+
| Minimum | 1.0 - 1.5 |
|
|
215
|
+
| Comfortable | 1.5 - 2.5 |
|
|
216
|
+
| Strong | > 2.5 |
|
|
217
|
+
|
|
218
|
+
## 4. Efficiency Ratios
|
|
219
|
+
|
|
220
|
+
Measure how effectively a company uses its assets and manages operations.
|
|
221
|
+
|
|
222
|
+
### Asset Turnover
|
|
223
|
+
|
|
224
|
+
**Formula:** Revenue / Total Assets
|
|
225
|
+
|
|
226
|
+
**Interpretation:**
|
|
227
|
+
|
|
228
|
+
- Measures revenue generated per dollar of assets
|
|
229
|
+
- Higher indicates more efficient asset utilization
|
|
230
|
+
- Inversely related to profit margins (DuPont)
|
|
231
|
+
|
|
232
|
+
**Benchmarks:**
|
|
233
|
+
| Industry | Typical Range |
|
|
234
|
+
|----------|--------------|
|
|
235
|
+
| Retail | 2.0 - 3.0 |
|
|
236
|
+
| Manufacturing | 0.8 - 1.5 |
|
|
237
|
+
| Utilities | 0.3 - 0.5 |
|
|
238
|
+
| Technology | 0.5 - 1.0 |
|
|
239
|
+
|
|
240
|
+
### Inventory Turnover
|
|
241
|
+
|
|
242
|
+
**Formula:** COGS / Average Inventory
|
|
243
|
+
|
|
244
|
+
**Interpretation:**
|
|
245
|
+
|
|
246
|
+
- Measures how quickly inventory is sold
|
|
247
|
+
- Low turnover suggests overstock or obsolescence risk
|
|
248
|
+
- High turnover may indicate strong sales or thin inventory
|
|
249
|
+
|
|
250
|
+
**Benchmarks:**
|
|
251
|
+
| Rating | Range |
|
|
252
|
+
|--------|-------|
|
|
253
|
+
| Slow | < 4x |
|
|
254
|
+
| Average | 4x - 8x |
|
|
255
|
+
| Efficient | 8x - 12x |
|
|
256
|
+
| Very Efficient | > 12x |
|
|
257
|
+
|
|
258
|
+
### Receivables Turnover
|
|
259
|
+
|
|
260
|
+
**Formula:** Revenue / Accounts Receivable
|
|
261
|
+
|
|
262
|
+
**Interpretation:**
|
|
263
|
+
|
|
264
|
+
- Measures efficiency of credit and collections
|
|
265
|
+
- Higher turnover means faster collections
|
|
266
|
+
- Monitor trends for credit policy changes
|
|
267
|
+
|
|
268
|
+
**Benchmarks:**
|
|
269
|
+
| Rating | Range |
|
|
270
|
+
|--------|-------|
|
|
271
|
+
| Slow | < 6x |
|
|
272
|
+
| Average | 6x - 10x |
|
|
273
|
+
| Efficient | 10x - 15x |
|
|
274
|
+
| Very Efficient | > 15x |
|
|
275
|
+
|
|
276
|
+
### Days Sales Outstanding (DSO)
|
|
277
|
+
|
|
278
|
+
**Formula:** 365 / Receivables Turnover
|
|
279
|
+
|
|
280
|
+
**Interpretation:**
|
|
281
|
+
|
|
282
|
+
- Average days to collect payment after a sale
|
|
283
|
+
- Lower DSO = faster cash conversion
|
|
284
|
+
- Compare against payment terms
|
|
285
|
+
|
|
286
|
+
**Benchmarks:**
|
|
287
|
+
| Rating | Range |
|
|
288
|
+
|--------|-------|
|
|
289
|
+
| Excellent | < 30 days |
|
|
290
|
+
| Good | 30 - 45 days |
|
|
291
|
+
| Acceptable | 45 - 60 days |
|
|
292
|
+
| Concern | > 60 days |
|
|
293
|
+
|
|
294
|
+
## 5. Valuation Ratios
|
|
295
|
+
|
|
296
|
+
Measure a company's market value relative to financial metrics.
|
|
297
|
+
|
|
298
|
+
### Price-to-Earnings (P/E) Ratio
|
|
299
|
+
|
|
300
|
+
**Formula:** Share Price / Earnings Per Share
|
|
301
|
+
|
|
302
|
+
**Interpretation:**
|
|
303
|
+
|
|
304
|
+
- Most widely used valuation metric
|
|
305
|
+
- High P/E suggests growth expectations or overvaluation
|
|
306
|
+
- Use trailing (TTM) and forward P/E for comparison
|
|
307
|
+
|
|
308
|
+
**Benchmarks:**
|
|
309
|
+
| Rating | Range |
|
|
310
|
+
|--------|-------|
|
|
311
|
+
| Value | < 10x |
|
|
312
|
+
| Fair | 10x - 20x |
|
|
313
|
+
| Growth | 20x - 35x |
|
|
314
|
+
| Premium | > 35x |
|
|
315
|
+
|
|
316
|
+
### Price-to-Book (P/B) Ratio
|
|
317
|
+
|
|
318
|
+
**Formula:** Share Price / Book Value Per Share
|
|
319
|
+
|
|
320
|
+
**Interpretation:**
|
|
321
|
+
|
|
322
|
+
- Compares market value to accounting value
|
|
323
|
+
- Below 1.0 may indicate undervaluation or distress
|
|
324
|
+
- Most useful for asset-heavy industries
|
|
325
|
+
|
|
326
|
+
**Benchmarks:**
|
|
327
|
+
| Rating | Range |
|
|
328
|
+
|--------|-------|
|
|
329
|
+
| Undervalued | < 1.0 |
|
|
330
|
+
| Fair | 1.0 - 2.5 |
|
|
331
|
+
| Premium | 2.5 - 5.0 |
|
|
332
|
+
| Rich | > 5.0 |
|
|
333
|
+
|
|
334
|
+
### Price-to-Sales (P/S) Ratio
|
|
335
|
+
|
|
336
|
+
**Formula:** Market Cap / Revenue
|
|
337
|
+
|
|
338
|
+
**Interpretation:**
|
|
339
|
+
|
|
340
|
+
- Useful for companies without positive earnings
|
|
341
|
+
- Compare within industry only
|
|
342
|
+
- Lower = potentially better value
|
|
343
|
+
|
|
344
|
+
**Benchmarks:**
|
|
345
|
+
| Rating | Range |
|
|
346
|
+
|--------|-------|
|
|
347
|
+
| Value | < 1.0 |
|
|
348
|
+
| Fair | 1.0 - 3.0 |
|
|
349
|
+
| Growth | 3.0 - 8.0 |
|
|
350
|
+
| Premium | > 8.0 |
|
|
351
|
+
|
|
352
|
+
### EV/EBITDA
|
|
353
|
+
|
|
354
|
+
**Formula:** Enterprise Value / EBITDA
|
|
355
|
+
|
|
356
|
+
**Interpretation:**
|
|
357
|
+
|
|
358
|
+
- Capital-structure-neutral valuation metric
|
|
359
|
+
- Preferred for M&A analysis and leveraged buyouts
|
|
360
|
+
- More comparable across capital structures than P/E
|
|
361
|
+
|
|
362
|
+
**Benchmarks:**
|
|
363
|
+
| Rating | Range |
|
|
364
|
+
|--------|-------|
|
|
365
|
+
| Value | < 6x |
|
|
366
|
+
| Fair | 6x - 12x |
|
|
367
|
+
| Growth | 12x - 20x |
|
|
368
|
+
| Premium | > 20x |
|
|
369
|
+
|
|
370
|
+
### PEG Ratio
|
|
371
|
+
|
|
372
|
+
**Formula:** P/E Ratio / Earnings Growth Rate (%)
|
|
373
|
+
|
|
374
|
+
**Interpretation:**
|
|
375
|
+
|
|
376
|
+
- Growth-adjusted P/E ratio
|
|
377
|
+
- PEG of 1.0 suggests fair valuation relative to growth
|
|
378
|
+
- Below 1.0 may indicate undervaluation
|
|
379
|
+
|
|
380
|
+
**Benchmarks:**
|
|
381
|
+
| Rating | Range |
|
|
382
|
+
|--------|-------|
|
|
383
|
+
| Undervalued | < 0.5 |
|
|
384
|
+
| Fair | 0.5 - 1.0 |
|
|
385
|
+
| Fully Valued | 1.0 - 2.0 |
|
|
386
|
+
| Overvalued | > 2.0 |
|
|
387
|
+
|
|
388
|
+
## Ratio Analysis Best Practices
|
|
389
|
+
|
|
390
|
+
1. **Compare within industry** - Ratios vary significantly across sectors
|
|
391
|
+
2. **Analyze trends** - A single period snapshot is insufficient; look at 3-5 year trends
|
|
392
|
+
3. **Use multiple ratios** - No single ratio tells the complete story
|
|
393
|
+
4. **Consider context** - Accounting policies, business cycle, and company stage matter
|
|
394
|
+
5. **DuPont decomposition** - Break ROE into margin, turnover, and leverage components
|
|
395
|
+
6. **Peer comparison** - Compare against direct competitors, not just broad benchmarks
|
|
396
|
+
7. **Watch for manipulation** - Revenue recognition changes, off-balance-sheet items, and one-time adjustments can distort ratios
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
# Forecasting Best Practices
|
|
2
|
+
|
|
3
|
+
Comprehensive reference for financial forecasting including driver-based models, rolling forecasts, accuracy improvement techniques, and scenario planning.
|
|
4
|
+
|
|
5
|
+
## 1. Driver-Based Forecasting
|
|
6
|
+
|
|
7
|
+
### Overview
|
|
8
|
+
|
|
9
|
+
Driver-based forecasting models financial outcomes based on key business drivers rather than extrapolating from historical trends alone. This approach creates more transparent, actionable, and accurate forecasts.
|
|
10
|
+
|
|
11
|
+
### Identifying Key Drivers
|
|
12
|
+
|
|
13
|
+
**Revenue Drivers:**
|
|
14
|
+
|
|
15
|
+
| Business Model | Primary Drivers |
|
|
16
|
+
| --------------------- | ------------------------------------ |
|
|
17
|
+
| SaaS/Subscription | Customers x ARPU x Retention Rate |
|
|
18
|
+
| E-commerce | Visitors x Conversion Rate x AOV |
|
|
19
|
+
| Manufacturing | Units x Price per Unit |
|
|
20
|
+
| Professional Services | Headcount x Utilization x Bill Rate |
|
|
21
|
+
| Retail | Stores x Revenue per Store (or sqft) |
|
|
22
|
+
| Marketplace | GMV x Take Rate |
|
|
23
|
+
|
|
24
|
+
**Cost Drivers:**
|
|
25
|
+
|
|
26
|
+
| Category | Common Drivers |
|
|
27
|
+
| ----------------- | ------------------------------------------------------ |
|
|
28
|
+
| COGS | Revenue x (1 - Gross Margin) or Units x Unit Cost |
|
|
29
|
+
| Headcount Costs | Employees x Average Compensation x (1 + Benefits Rate) |
|
|
30
|
+
| Sales & Marketing | Revenue x S&M % or CAC x New Customers |
|
|
31
|
+
| R&D | Engineering Headcount x Avg Salary |
|
|
32
|
+
| G&A | Headcount-based + fixed costs |
|
|
33
|
+
| CapEx | Revenue x CapEx Intensity or Project-based |
|
|
34
|
+
|
|
35
|
+
### Building a Driver-Based Model
|
|
36
|
+
|
|
37
|
+
**Step 1: Map the value chain**
|
|
38
|
+
|
|
39
|
+
- Revenue = f(volume drivers, pricing drivers, mix drivers)
|
|
40
|
+
- Costs = f(variable drivers, fixed components, step functions)
|
|
41
|
+
|
|
42
|
+
**Step 2: Establish driver relationships**
|
|
43
|
+
|
|
44
|
+
- Linear: Revenue = Units x Price
|
|
45
|
+
- Non-linear: Revenue = Base x (1 + Growth Rate)^t
|
|
46
|
+
- Step function: Facilities costs that jump at capacity thresholds
|
|
47
|
+
|
|
48
|
+
**Step 3: Validate driver assumptions**
|
|
49
|
+
|
|
50
|
+
- Compare driver values to historical actuals
|
|
51
|
+
- Benchmark against industry data
|
|
52
|
+
- Stress-test extreme values
|
|
53
|
+
|
|
54
|
+
**Step 4: Build sensitivity**
|
|
55
|
+
|
|
56
|
+
- Identify which drivers have the largest impact on output
|
|
57
|
+
- Quantify the range of reasonable values for each driver
|
|
58
|
+
- Create scenario combinations
|
|
59
|
+
|
|
60
|
+
### Driver Sensitivity Matrix
|
|
61
|
+
|
|
62
|
+
Rank drivers by impact and uncertainty:
|
|
63
|
+
|
|
64
|
+
| | High Impact | Low Impact |
|
|
65
|
+
| -------------------- | ------------------------------------- | ---------------------------- |
|
|
66
|
+
| **High Uncertainty** | Model these carefully, run scenarios | Monitor but don't over-model |
|
|
67
|
+
| **Low Uncertainty** | Get these right; high accuracy needed | Use simple assumptions |
|
|
68
|
+
|
|
69
|
+
## 2. Rolling Forecasts
|
|
70
|
+
|
|
71
|
+
### What Is a Rolling Forecast?
|
|
72
|
+
|
|
73
|
+
A rolling forecast continuously extends the forecast horizon as each period closes. Unlike a static annual budget, a rolling forecast always looks forward the same number of periods (typically 12-18 months).
|
|
74
|
+
|
|
75
|
+
### Rolling Forecast vs Annual Budget
|
|
76
|
+
|
|
77
|
+
| Feature | Annual Budget | Rolling Forecast |
|
|
78
|
+
| ---------------- | ------------------ | ---------------------- |
|
|
79
|
+
| Time Horizon | Fixed (Jan-Dec) | Rolling (12-18 months) |
|
|
80
|
+
| Update Frequency | Once per year | Monthly or quarterly |
|
|
81
|
+
| Detail Level | Very detailed | Driver-level |
|
|
82
|
+
| Preparation Time | 3-6 months | 2-5 days per cycle |
|
|
83
|
+
| Relevance | Declines over time | Stays current |
|
|
84
|
+
| Flexibility | Rigid | Adaptive |
|
|
85
|
+
|
|
86
|
+
### Implementation Steps
|
|
87
|
+
|
|
88
|
+
1. **Select the horizon** - 12 months rolling is most common (some use 18 months for CapEx planning)
|
|
89
|
+
2. **Define update cadence** - Monthly for volatile businesses; quarterly for stable ones
|
|
90
|
+
3. **Choose the right detail** - Driver-level, not line-item detail
|
|
91
|
+
4. **Automate data feeds** - Reduce manual effort per cycle
|
|
92
|
+
5. **Separate actuals from forecast** - Clear delineation between reported and projected periods
|
|
93
|
+
6. **Track forecast accuracy** - Measure MAPE (Mean Absolute Percentage Error) over time
|
|
94
|
+
|
|
95
|
+
### 13-Week Cash Flow Forecast
|
|
96
|
+
|
|
97
|
+
A specialized rolling forecast for liquidity management:
|
|
98
|
+
|
|
99
|
+
**Structure:**
|
|
100
|
+
|
|
101
|
+
- Week-by-week cash inflows and outflows
|
|
102
|
+
- Opening and closing cash balances
|
|
103
|
+
- Minimum cash threshold alerts
|
|
104
|
+
|
|
105
|
+
**Key Components:**
|
|
106
|
+
| Inflows | Outflows |
|
|
107
|
+
|---------|----------|
|
|
108
|
+
| Customer collections (by aging) | Payroll (fixed cadence) |
|
|
109
|
+
| Other receivables | Rent / Lease payments |
|
|
110
|
+
| Asset sales | Vendor payments (by terms) |
|
|
111
|
+
| Financing proceeds | Debt service |
|
|
112
|
+
| Tax refunds | Tax payments |
|
|
113
|
+
| Other income | Capital expenditures |
|
|
114
|
+
|
|
115
|
+
**Collection Modeling:**
|
|
116
|
+
|
|
117
|
+
- Apply collection rates by customer segment or aging bucket
|
|
118
|
+
- Model DSO trends to project collection timing
|
|
119
|
+
- Account for seasonal patterns in payment behavior
|
|
120
|
+
|
|
121
|
+
## 3. Accuracy Improvement
|
|
122
|
+
|
|
123
|
+
### Measuring Forecast Accuracy
|
|
124
|
+
|
|
125
|
+
**Mean Absolute Percentage Error (MAPE):**
|
|
126
|
+
|
|
127
|
+
```
|
|
128
|
+
MAPE = (1/n) x Sum of |Actual - Forecast| / |Actual| x 100%
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
**Accuracy Benchmarks:**
|
|
132
|
+
| MAPE | Rating |
|
|
133
|
+
|------|--------|
|
|
134
|
+
| < 5% | Excellent |
|
|
135
|
+
| 5% - 10% | Good |
|
|
136
|
+
| 10% - 20% | Acceptable |
|
|
137
|
+
| > 20% | Needs improvement |
|
|
138
|
+
|
|
139
|
+
**Weighted MAPE (WMAPE):**
|
|
140
|
+
Use when line items vary significantly in magnitude - weights errors by actual values.
|
|
141
|
+
|
|
142
|
+
### Techniques to Improve Accuracy
|
|
143
|
+
|
|
144
|
+
**1. Bias Detection and Correction**
|
|
145
|
+
|
|
146
|
+
- Track directional bias (consistently over or under forecasting)
|
|
147
|
+
- Calculate mean signed error to detect systematic bias
|
|
148
|
+
- Adjust driver assumptions to correct persistent bias
|
|
149
|
+
|
|
150
|
+
**2. Variance Analysis Loop**
|
|
151
|
+
|
|
152
|
+
- After each period closes, compare actual vs forecast
|
|
153
|
+
- Identify root causes of significant variances
|
|
154
|
+
- Update driver assumptions based on learnings
|
|
155
|
+
- Document what changed and why
|
|
156
|
+
|
|
157
|
+
**3. Ensemble Approach**
|
|
158
|
+
|
|
159
|
+
- Combine multiple forecasting methods
|
|
160
|
+
- Blend statistical (trend) with judgmental (management input)
|
|
161
|
+
- Weight methods by their historical accuracy
|
|
162
|
+
|
|
163
|
+
**4. Granularity Optimization**
|
|
164
|
+
|
|
165
|
+
- Forecast at the right level of detail - not too aggregated, not too granular
|
|
166
|
+
- Product/segment level usually more accurate than single top-line
|
|
167
|
+
- Aggregate bottom-up forecasts for total, then adjust
|
|
168
|
+
|
|
169
|
+
**5. Leading Indicators**
|
|
170
|
+
|
|
171
|
+
- Identify metrics that predict financial outcomes 1-3 months ahead
|
|
172
|
+
- Pipeline/bookings predict revenue
|
|
173
|
+
- Hiring plans predict headcount costs
|
|
174
|
+
- Customer churn signals predict retention revenue
|
|
175
|
+
|
|
176
|
+
### Common Accuracy Killers
|
|
177
|
+
|
|
178
|
+
1. **Anchoring bias** - Over-relying on last year's numbers
|
|
179
|
+
2. **Optimism bias** - Systematic overestimation of growth
|
|
180
|
+
3. **Lack of accountability** - No one tracks forecast vs actual
|
|
181
|
+
4. **Stale assumptions** - Not updating for market changes
|
|
182
|
+
5. **Missing data** - Forecasting without key driver inputs
|
|
183
|
+
6. **Over-precision** - False precision in uncertain environments
|
|
184
|
+
|
|
185
|
+
## 4. Scenario Planning
|
|
186
|
+
|
|
187
|
+
### Three-Scenario Framework
|
|
188
|
+
|
|
189
|
+
| Scenario | Description | Probability |
|
|
190
|
+
| ------------- | ----------------------------------------------- | ----------- |
|
|
191
|
+
| **Base Case** | Most likely outcome based on current trajectory | 50-60% |
|
|
192
|
+
| **Bull Case** | Favorable conditions, upside realization | 15-25% |
|
|
193
|
+
| **Bear Case** | Adverse conditions, downside risks | 15-25% |
|
|
194
|
+
|
|
195
|
+
### Scenario Construction
|
|
196
|
+
|
|
197
|
+
**Base Case:**
|
|
198
|
+
|
|
199
|
+
- Continuation of current trends
|
|
200
|
+
- Management's operational plan
|
|
201
|
+
- Market consensus assumptions
|
|
202
|
+
- Normal competitive dynamics
|
|
203
|
+
|
|
204
|
+
**Bull Case (apply selectively, not uniformly):**
|
|
205
|
+
|
|
206
|
+
- Faster customer acquisition or market adoption
|
|
207
|
+
- Successful product launch or expansion
|
|
208
|
+
- Favorable macro conditions
|
|
209
|
+
- Competitor weakness or exit
|
|
210
|
+
- Margin expansion from operating leverage
|
|
211
|
+
|
|
212
|
+
**Bear Case (be realistic, not catastrophic):**
|
|
213
|
+
|
|
214
|
+
- Slower growth or market contraction
|
|
215
|
+
- Increased competition or pricing pressure
|
|
216
|
+
- Key customer or contract loss
|
|
217
|
+
- Supply chain disruption
|
|
218
|
+
- Regulatory headwinds
|
|
219
|
+
|
|
220
|
+
### Scenario Variables
|
|
221
|
+
|
|
222
|
+
Map each scenario to specific driver values:
|
|
223
|
+
|
|
224
|
+
| Driver | Bear | Base | Bull |
|
|
225
|
+
| ------------------- | ---- | ---- | ---- |
|
|
226
|
+
| Revenue Growth | +2% | +8% | +15% |
|
|
227
|
+
| Gross Margin | 35% | 40% | 43% |
|
|
228
|
+
| Customer Churn | 8% | 5% | 3% |
|
|
229
|
+
| New Customers/Month | 50 | 100 | 180 |
|
|
230
|
+
| Price Increase | 0% | 3% | 5% |
|
|
231
|
+
|
|
232
|
+
### Presenting Scenarios
|
|
233
|
+
|
|
234
|
+
1. **Show the range** - Management needs to see the potential outcomes
|
|
235
|
+
2. **Quantify the gap** - Dollar impact of bull vs bear on key metrics
|
|
236
|
+
3. **Identify triggers** - What conditions would cause each scenario
|
|
237
|
+
4. **Define actions** - What levers to pull in each scenario
|
|
238
|
+
5. **Assign probabilities** - Not all scenarios are equally likely
|
|
239
|
+
|
|
240
|
+
## 5. Forecast Communication
|
|
241
|
+
|
|
242
|
+
### Stakeholder Needs
|
|
243
|
+
|
|
244
|
+
| Audience | Needs |
|
|
245
|
+
| ---------------- | ------------------------------------------------------- |
|
|
246
|
+
| Board | High-level scenarios, key risks, strategic implications |
|
|
247
|
+
| CEO/CFO | Detailed drivers, variance explanations, action items |
|
|
248
|
+
| Department Heads | Their specific budget vs forecast, headcount plans |
|
|
249
|
+
| Investors | Revenue guidance, margin trajectory, capital allocation |
|
|
250
|
+
| Operations | Weekly/monthly targets, resource requirements |
|
|
251
|
+
|
|
252
|
+
### Presentation Framework
|
|
253
|
+
|
|
254
|
+
1. **Executive summary** - Key metrics, direction of travel, confidence level
|
|
255
|
+
2. **Variance bridge** - Walk from budget/prior forecast to current forecast
|
|
256
|
+
3. **Driver analysis** - What changed and why
|
|
257
|
+
4. **Scenario comparison** - Range of outcomes
|
|
258
|
+
5. **Key risks and opportunities** - What could change the forecast
|
|
259
|
+
6. **Action items** - Decisions needed based on forecast
|
|
260
|
+
|
|
261
|
+
### Forecast Cadence
|
|
262
|
+
|
|
263
|
+
| Activity | Frequency | Time Required |
|
|
264
|
+
| ------------------------ | --------- | ------------- |
|
|
265
|
+
| 13-week cash flow update | Weekly | 1-2 hours |
|
|
266
|
+
| Rolling forecast update | Monthly | 1-2 days |
|
|
267
|
+
| Full reforecast | Quarterly | 3-5 days |
|
|
268
|
+
| Annual budget/plan | Annually | 4-8 weeks |
|
|
269
|
+
| Board reporting | Quarterly | 2-3 days |
|
|
270
|
+
|
|
271
|
+
## 6. Industry-Specific Considerations
|
|
272
|
+
|
|
273
|
+
### SaaS Metrics in Forecasting
|
|
274
|
+
|
|
275
|
+
- **MRR/ARR decomposition:** New, expansion, contraction, churn
|
|
276
|
+
- **Cohort-based forecasting:** Forecast by customer cohort for retention accuracy
|
|
277
|
+
- **Rule of 40:** Revenue growth % + Profit margin % should exceed 40%
|
|
278
|
+
- **Net Revenue Retention:** Target > 110% for healthy SaaS
|
|
279
|
+
- **CAC Payback:** Should be < 18 months
|
|
280
|
+
|
|
281
|
+
### Retail Forecasting
|
|
282
|
+
|
|
283
|
+
- **Same-store sales growth** as primary organic growth metric
|
|
284
|
+
- **Seasonal decomposition** for accurate monthly/weekly forecasts
|
|
285
|
+
- **Markdown optimization** impact on gross margin
|
|
286
|
+
- **Inventory turns** drive working capital forecasts
|
|
287
|
+
|
|
288
|
+
### Manufacturing Forecasting
|
|
289
|
+
|
|
290
|
+
- **Order backlog** as a leading indicator
|
|
291
|
+
- **Capacity constraints** creating step-function cost increases
|
|
292
|
+
- **Raw material price forecasts** for COGS
|
|
293
|
+
- **Maintenance CapEx vs growth CapEx** distinction
|
|
294
|
+
- **Utilization rates** driving unit cost projections
|