futurefeader commited on
Commit
a1ab59f
·
verified ·
1 Parent(s): baffb69

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +80 -0
README.md CHANGED
@@ -1,3 +1,83 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ > **Languages:** [简体中文](README_ZH.md) · [English](README.md)
6
+
7
+ # dojo_sector_precomputed — Precomputed Sector Analytics
8
+
9
+ ## Overview
10
+
11
+ Derived sector analytics: L3 constituent snapshots, daily cap-weighted sector index levels, and per-constituent daily returns. Built offline from taxonomy, mappings, quotes, and stock K-lines.
12
+
13
+ ## Files
14
+
15
+ | File | Description |
16
+ |------|-------------|
17
+ | `manifest.json` | Generation metadata: version, window start, row counts, latest trade dates |
18
+ | `constituents.parquet` | L3 constituent snapshot (cap, P/E) |
19
+ | `sector_daily.parquet` | Daily sector index and metrics (L1/L2/L3 scope) |
20
+ | `ticker_daily.parquet` | Constituent daily close and returns |
21
+
22
+ ## Key Fields
23
+
24
+ ### manifest.json
25
+
26
+ | Field | Description |
27
+ |-------|-------------|
28
+ | `version` | Schema version (currently `2`) |
29
+ | `generated_at` | UTC generation timestamp |
30
+ | `window_start` | Window start (default `2025-01-01`) |
31
+ | `latest_trade_date_by_market` | Latest session per market |
32
+ | `constituent_count` / `sector_daily_rows` / `ticker_daily_rows` | Row count summary |
33
+
34
+ ### constituents.parquet
35
+
36
+ | Field | Description |
37
+ |-------|-------------|
38
+ | `level1_id` / `level2_id` / `level3_id` | Sector path IDs |
39
+ | `market` | `us`, `cn`, or `hk` |
40
+ | `ticker` | Constituent symbol |
41
+ | `role` | `primary` or `secondary` |
42
+ | `market_cap` | Snapshot market cap |
43
+ | `weighted_pe` | Stock P/E used in sector weighting |
44
+
45
+ ### sector_daily.parquet
46
+
47
+ | Field | Description |
48
+ |-------|-------------|
49
+ | `trade_date` | Trade date |
50
+ | `scope` | `L1`, `L2`, or `L3` aggregation level |
51
+ | `market` | Market |
52
+ | `level1_id` / `level2_id` / `level3_id` | Sector IDs |
53
+ | `member_count` | Constituent count |
54
+ | `total_market_cap` | Aggregate cap |
55
+ | `weighted_pe` | Cap-weighted P/E |
56
+ | `index_level` | Cap-weighted index (base = 100) |
57
+ | `daily_return_pct` | Sector daily return (%) |
58
+
59
+ ### ticker_daily.parquet
60
+
61
+ | Field | Description |
62
+ |-------|-------------|
63
+ | `ticker` | Stock symbol |
64
+ | `trade_date` | Trade date |
65
+ | `close` | Close price |
66
+ | `daily_return_pct` | Daily return (%) |
67
+ | `cumulative_return_pct` | Cumulative return since `window_start` (%) |
68
+
69
+ ## Scale (reference)
70
+
71
+ See `manifest.json`. Typical sizes: constituents ~20k, sector_daily ~180k, ticker_daily ~4.6M rows.
72
+
73
+ ## Index Method
74
+
75
+ - Daily returns are **cap-weighted** across constituents; index base level = 100.
76
+ - Constituents require valid daily bars in [dojo_stock_kline](https://huggingface.co/datasets/AlphaDojo/dojo_stock_kline) and positive market cap from [dojo_quote](https://huggingface.co/datasets/AlphaDojo/dojo_quote).
77
+
78
+ ## Input Datasets
79
+
80
+ - [dojo_sector_info](https://huggingface.co/datasets/AlphaDojo/dojo_sector_info)
81
+ - [dojo_sector_symbol_relations](https://huggingface.co/datasets/AlphaDojo/dojo_sector_symbol_relations)
82
+ - [dojo_stock_kline](https://huggingface.co/datasets/AlphaDojo/dojo_stock_kline)
83
+ - [dojo_quote](https://huggingface.co/datasets/AlphaDojo/dojo_quote)