Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -8,16 +8,7 @@ license: apache-2.0
|
|
| 8 |
|
| 9 |
## Overview
|
| 10 |
|
| 11 |
-
Multi-period
|
| 12 |
-
|
| 13 |
-
## Role in AlphaDojo
|
| 14 |
-
|
| 15 |
-
- **`FundamentalStore`**:
|
| 16 |
-
- `fin_indicators()` — metric time series by symbol
|
| 17 |
-
- `rolling_ttm_net_profit()` / `rolling_ttm_eps()` — rolling TTM math
|
| 18 |
-
- **DojoCore:** Financial metrics panel, ROE / margin / leverage charts.
|
| 19 |
-
- **DojoCore P/E band:** `latest_eps_ttm()` with bars and shares for historical P/E.
|
| 20 |
-
- **DojoAgent:** Valuation, profitability, high-dividend screens, etc.
|
| 21 |
|
| 22 |
## Files
|
| 23 |
|
|
@@ -32,7 +23,7 @@ Multi-period **financial statement derivatives** per symbol: income statement, b
|
|
| 32 |
| `symbol` | Stock symbol |
|
| 33 |
| `report_type` | e.g. `quarter`, `accumulate` |
|
| 34 |
| `report_date` / `std_report_date` | Report period / normalized period |
|
| 35 |
-
| `public_date` | Disclosure date
|
| 36 |
| `report_period_name` | Period label (e.g. “Q1 2026”) |
|
| 37 |
| `security_name` | Company name |
|
| 38 |
| `currency` | Report currency |
|
|
@@ -43,22 +34,21 @@ Multi-period **financial statement derivatives** per symbol: income statement, b
|
|
| 43 |
| `debt_asset_ratio` / `current_ratio` / `quick_ratio` | Leverage and liquidity |
|
| 44 |
| `pe_ttm` / `pb_ttm` | Period TTM valuation (when present) |
|
| 45 |
| `dividend_rate` / `divi_ratio` | Dividend-related fields |
|
| 46 |
-
|
| 47 |
-
Many columns are filled selectively by `org_type` (general / bank / insurance / broker).
|
| 48 |
|
| 49 |
## Scale (reference)
|
| 50 |
|
| 51 |
~**278k** rows (symbol × period × report type).
|
| 52 |
|
| 53 |
-
##
|
| 54 |
|
| 55 |
-
-
|
| 56 |
-
-
|
| 57 |
-
- `
|
| 58 |
|
| 59 |
## Related Datasets
|
| 60 |
|
| 61 |
-
- [dojo_main_income](https://huggingface.co/datasets/AlphaDojo/dojo_main_income) — revenue breakdown
|
| 62 |
-
- [dojo_quote](https://huggingface.co/datasets/AlphaDojo/dojo_quote) — market cap and
|
| 63 |
-
- [dojo_stock_kline](https://huggingface.co/datasets/AlphaDojo/dojo_stock_kline) —
|
| 64 |
-
- [dojo_forex_kline](https://huggingface.co/datasets/AlphaDojo/dojo_forex_kline) —
|
|
|
|
| 8 |
|
| 9 |
## Overview
|
| 10 |
|
| 11 |
+
Multi-period financial statement derivatives per symbol: income statement, balance sheet, cash flow, and industry-specific metrics (banks, insurers, brokers, etc.). Supports quarterly, cumulative, and other `report_type` values.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
## Files
|
| 14 |
|
|
|
|
| 23 |
| `symbol` | Stock symbol |
|
| 24 |
| `report_type` | e.g. `quarter`, `accumulate` |
|
| 25 |
| `report_date` / `std_report_date` | Report period / normalized period |
|
| 26 |
+
| `public_date` | Disclosure date |
|
| 27 |
| `report_period_name` | Period label (e.g. “Q1 2026”) |
|
| 28 |
| `security_name` | Company name |
|
| 29 |
| `currency` | Report currency |
|
|
|
|
| 34 |
| `debt_asset_ratio` / `current_ratio` / `quick_ratio` | Leverage and liquidity |
|
| 35 |
| `pe_ttm` / `pb_ttm` | Period TTM valuation (when present) |
|
| 36 |
| `dividend_rate` / `divi_ratio` | Dividend-related fields |
|
| 37 |
+
| `org_type` | Entity type (general / bank / insurance / broker); many columns are filled selectively |
|
|
|
|
| 38 |
|
| 39 |
## Scale (reference)
|
| 40 |
|
| 41 |
~**278k** rows (symbol × period × report type).
|
| 42 |
|
| 43 |
+
## Data Notes
|
| 44 |
|
| 45 |
+
- Multiple rows per symbol across `report_type` and `report_date`; use `public_date` or `report_date` for chronological ordering.
|
| 46 |
+
- `report_type = quarter` rows support trailing-four-quarter (TTM) aggregation.
|
| 47 |
+
- Report period conventions differ by market (`us`, `cn`, `hk`); prefer `std_report_date` when present for cross-market comparison.
|
| 48 |
|
| 49 |
## Related Datasets
|
| 50 |
|
| 51 |
+
- [dojo_main_income](https://huggingface.co/datasets/AlphaDojo/dojo_main_income) — revenue breakdown for the same periods
|
| 52 |
+
- [dojo_quote](https://huggingface.co/datasets/AlphaDojo/dojo_quote) — market cap and market-based valuation
|
| 53 |
+
- [dojo_stock_kline](https://huggingface.co/datasets/AlphaDojo/dojo_stock_kline) — price history
|
| 54 |
+
- [dojo_forex_kline](https://huggingface.co/datasets/AlphaDojo/dojo_forex_kline) — FX rates when report currency differs from analysis currency
|