PoorOtterBob commited on
Commit
9a342ec
·
verified ·
1 Parent(s): bd21abf

Clarify Finance1K dataset limitations

Browse files
Files changed (1) hide show
  1. README.md +12 -13
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
- "abel-lab/finance1k", "close", revision="v1.0.0"
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. It includes weekend and market-holiday rows that
82
- become zero log changes after forward filling. The paper evaluates
83
- cross-sectional IC on the 1,455 trading-hour targets with nonzero
84
- cross-sectional spread. The ticker universe also requires long coverage and is
85
- stratified by volatility bucket. It is designed for predictability and ranking
86
- experiments and should not be interpreted as a representative market sample.
 
 
 
87
 
88
  ## License
89
 
90
- Finance1K is licensed under the Creative Commons
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).