Skip to content

做什么(One-liner)

从 yfinance 三表 + 公司信息派生 5 个量化管理层信号(ROIC / 人均 revenue / 增长稳定性 / ...)+ 5 项启发式定性评估(创始人 CEO / PE/KE / 领导风格 / 薪酬 / 任期),产出 0-100 L 分。

怎么用

Canvas 拖 blcv_leadership_v1,填 symbol。输出 quantitative dict + qualitative list(5 项)+ l_score + logic_lineage。

典型用法:

  • symbol=META → founder_ceo active (Zuckerberg), ROIC + growth signals from yfinance → l_score ~75-85
  • symbol=AAPL → founder_ceo inactive (Jobs succeeded by Cook long ago), high ROIC → l_score ~60-70

核心公式

量化: 5 个信号从 yfinance 三表 + fullTimeEmployees 派生。

定性: 5 项固定维度:

  1. founder_ceo — 静态 8-symbol 表查询
  2. pe_ke — 2×2 matrix based on (growth > 15%, ROIC > 12%)
  3. leadership_style — 基于 growth variance 阈值
  4. compensation — placeholder
  5. tenure_stability — placeholder

评分: 6 项 _add with weights (2.0, 1.0, 1.5, 0.5, 1.0, 0.5);max_pts = 6.5;l_score = clamp(score/max_pts, 0, 1) × 100。

假设与适用场景

假设:yfinance 财报可用 + Yahoo 标准命名 + Founder-CEO 表静态合理 + heuristic 阈值 15% / 12% 对美股 reasonable。

适用:美股上市公司,长期持有候选的管理层辅助评估。

不适用:非美 / 非 mega-cap / 私募 / 首发后 < 2 年 / 管理层更换期。

输入 / 输出契约

{symbol: str}{symbol, name, quantitative, qualitative, l_score, logic_lineage}。5 固定 qualitative dims in fixed order — golden 锁定。

已知局限

  1. Founder-CEO 表静态(8 个美股 mega-cap,手工维护,年度 review)
  2. compensation / tenure_stability 是 placeholders('data_pending')
  3. growth_consistency heuristic 非学术 convention
  4. Scoring weights 未做 sensitivity analysis
  5. earnings_data 字段标记 available 但未在 scoring 中使用
  6. PE/KE 阈值 15% / 12% hardcoded

参考文献

Graham-Dodd (1934) + Bertrand-Schoar (2003) 管理风格实证 + Fahlenbrach (2009) founder-CEO 实证 + Buffett 股东信。详见 frontmatter。

Golden Test

tests/golden/fixtures/tier2/blcv_leadership/yfinance-snapshot integration regression。1e-6 tolerance post-rounding。6 tests:

  • matches_snapshot — 全 output 深比对(recursive numeric tolerance)
  • l_score_in_0_100_range — 范围 contract
  • determinism — 5 reruns byte-identical
  • top_level_field_set — 6 固定顶层 keys
  • qualitative_has_5_fixed_dimensions — 5 维度固定顺序
  • founder_ceo_lookup — 静态表 contract (META/NVDA/TSLA 在,case-sensitive)

快照与 tier1/blcv_financials 共享(同一 AAPL 2026-04-20 pickle)。

Changelog

  • 1.0.0 (2026-04-20) — 首次 Active(Tier 2 batch 3, yfinance snapshot regression)

Verifiable intelligence for the decisions that demand scrutiny.