Datasets:
Clarify Finance1K dataset limitations
Browse files
README.md
CHANGED
|
@@ -65,12 +65,8 @@ The close and volume configurations can be read independently:
|
|
| 65 |
|
| 66 |
from datasets import load_dataset
|
| 67 |
|
| 68 |
-
close = load_dataset(
|
| 69 |
-
|
| 70 |
-
)
|
| 71 |
-
volume = load_dataset(
|
| 72 |
-
"abel-lab/finance1k", "volume", revision="v1.0.0"
|
| 73 |
-
)
|
| 74 |
|
| 75 |
The synchronized arrays must remain intact when evaluating cross-sectional
|
| 76 |
metrics. Flattening ticker and timestamp axes changes the empirical task.
|
|
@@ -78,15 +74,18 @@ metrics. Flattening ticker and timestamp axes changes the empirical task.
|
|
| 78 |
## Known limitations
|
| 79 |
|
| 80 |
The stored timeline is a regular calendar-day hourly grid rather than an
|
| 81 |
-
exchange-session calendar.
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
|
|
|
|
|
|
|
|
|
| 87 |
|
| 88 |
## License
|
| 89 |
|
| 90 |
-
Finance1K is
|
| 91 |
Attribution-NonCommercial-ShareAlike 4.0 International license
|
| 92 |
(CC BY-NC-SA 4.0).
|
|
|
|
| 65 |
|
| 66 |
from datasets import load_dataset
|
| 67 |
|
| 68 |
+
close = load_dataset("abel-lab/finance1k", "close")
|
| 69 |
+
volume = load_dataset("abel-lab/finance1k", "volume")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
|
| 71 |
The synchronized arrays must remain intact when evaluating cross-sectional
|
| 72 |
metrics. Flattening ticker and timestamp axes changes the empirical task.
|
|
|
|
| 74 |
## Known limitations
|
| 75 |
|
| 76 |
The stored timeline is a regular calendar-day hourly grid rather than an
|
| 77 |
+
exchange-session calendar. Weekend and market-holiday rows are filled with zero
|
| 78 |
+
log changes.
|
| 79 |
+
|
| 80 |
+
The ticker universe is limited to names with sufficiently long historical
|
| 81 |
+
coverage to span the common evaluation window. Eligible tickers are divided
|
| 82 |
+
into ten historical-volatility buckets, with 100 selected from each bucket, to
|
| 83 |
+
balance the panel across volatility levels. This construction introduces
|
| 84 |
+
survivorship and selection effects and should not be interpreted as a
|
| 85 |
+
representative market sample.
|
| 86 |
|
| 87 |
## License
|
| 88 |
|
| 89 |
+
Finance1K is released under the Creative Commons
|
| 90 |
Attribution-NonCommercial-ShareAlike 4.0 International license
|
| 91 |
(CC BY-NC-SA 4.0).
|