Honor complete attribution beta semantics labels

This commit is contained in:
2026-04-07 17:51:57 +08:00
parent b3d87b3d92
commit 35a91ba6cc
2 changed files with 124 additions and 26 deletions

View File

@@ -923,6 +923,100 @@ class AttributionIntegrationTests(unittest.TestCase):
self.assertIn("SMB_PROXY", output)
self.assertNotIn(" beta_smb ", output)
def test_print_attribution_summary_honors_complete_noncanonical_beta_semantics(self):
summary = pd.DataFrame(
[
{
"strategy": "US Strategy",
"market": "us",
"model": "ff5",
"factor_source": "external+local",
"proxy_only": False,
"beta_semantics": json.dumps(
{
"beta_mkt": "MARKET_EXCESS",
"beta_smb": "SIZE",
"beta_hml": "VALUE",
"beta_rmw": "QUALITY",
"beta_cma": "INVESTMENT",
"beta_mom": "MOMENTUM",
"beta_lowvol": "MINVOL",
"beta_recovery": "BOUNCE",
}
),
"start_date": "2025-01-02",
"end_date": "2026-03-24",
"n_obs": 319,
"alpha_daily": 0.0004,
"alpha_ann": 0.1008,
"alpha_t_stat": 2.1,
"alpha_p_value": 0.04,
"r_squared": 0.82,
"adj_r_squared": 0.81,
"residual_vol_ann": 0.12,
"beta_mkt": 1.05,
"beta_smb": -0.20,
"beta_hml": 0.30,
"beta_rmw": 0.05,
"beta_cma": np.nan,
"beta_mom": np.nan,
"beta_lowvol": np.nan,
"beta_recovery": np.nan,
},
{
"strategy": "CN Strategy",
"market": "cn",
"model": "proxy",
"factor_source": "proxy_only",
"proxy_only": True,
"beta_semantics": json.dumps(
{
"beta_mkt": "LOCAL_MARKET",
"beta_smb": "SIZE_PROXY_CUSTOM",
"beta_hml": "VALUE_PROXY_CUSTOM",
"beta_rmw": "QUALITY_PROXY_CUSTOM",
"beta_cma": "INVEST_PROXY_CUSTOM",
"beta_mom": "TREND",
"beta_lowvol": "DEFENSIVE",
"beta_recovery": "RECOVERY_PROXY",
}
),
"start_date": "2025-01-02",
"end_date": "2026-03-24",
"n_obs": 319,
"alpha_daily": 0.0002,
"alpha_ann": 0.0504,
"alpha_t_stat": 1.5,
"alpha_p_value": 0.12,
"r_squared": 0.72,
"adj_r_squared": 0.70,
"residual_vol_ann": 0.14,
"beta_mkt": 0.85,
"beta_smb": -0.30,
"beta_hml": 0.25,
"beta_rmw": 0.10,
"beta_cma": -0.05,
"beta_mom": 0.20,
"beta_lowvol": np.nan,
"beta_recovery": np.nan,
},
]
)
buffer = io.StringIO()
with contextlib.redirect_stdout(buffer):
print_attribution_summary(summary)
output = buffer.getvalue()
self.assertIn("Standard factor attribution", output)
self.assertIn("Proxy factor attribution", output)
self.assertIn("beta_market_excess", output)
self.assertIn("beta_size_proxy_custom", output)
self.assertIn("MARKET_EXCESS 1.05", output)
self.assertIn("SIZE_PROXY_CUSTOM -0.30", output)
self.assertNotIn("MKT_RF 1.05", output)
self.assertNotIn("SMB_PROXY -0.30", output)
def test_print_attribution_summary_splits_standard_and_proxy_sections_for_mixed_frames(self):
summary = pd.DataFrame(
[