Jitendra12421 commited on
Commit
a96aba3
·
verified ·
1 Parent(s): a29accc

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -7
README.md CHANGED
@@ -1,10 +1,52 @@
1
- # Alt Data Directory
 
 
 
 
 
 
 
 
 
 
2
 
3
- This folder holds supporting datasets that are separate from the core market-data pipeline.
4
 
5
- - `options/` contains raw and processed options datasets.
6
- - `institutional/` contains institutional flow and positioning datasets.
7
- - `external/` contains macro, index, FX, and other outside-market reference data.
8
- - `metadata/` contains research notes and supporting documentation for alternate datasets.
9
 
10
- Keep the same `raw/` and `processed/` split inside each alternate-data area where possible.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Trading Forecasting Data
3
+ license: other
4
+ task_categories:
5
+ - tabular-classification
6
+ - tabular-regression
7
+ tags:
8
+ - finance
9
+ - forecasting
10
+ - market-data
11
+ ---
12
 
13
+ # Trading Forecasting Dataset
14
 
15
+ Upload the contents of this `dataset` folder to a separate Hugging Face Dataset repository.
 
 
 
16
 
17
+ Expected Dataset repo root:
18
+
19
+ ```text
20
+ Data/
21
+ Alt Data/
22
+ README.md
23
+ .gitattributes
24
+ ```
25
+
26
+ The Hugging Face Space backend expects these folders to hydrate into its `research_runtime` folder:
27
+
28
+ - `Data/`
29
+ - `Alt Data/`
30
+
31
+ After uploading this dataset repo, set this Space environment variable:
32
+
33
+ ```text
34
+ HF_DATASET_REPO_ID=your-hf-username/your-forecasting-dataset
35
+ ```
36
+
37
+ Optional:
38
+
39
+ ```text
40
+ HF_DATASET_REVISION=main
41
+ ```
42
+
43
+ The backend will download this dataset at startup if `research_runtime/Data` or `research_runtime/Alt Data` is missing. It also checks before update/retrain jobs.
44
+
45
+ ## Upload Notes
46
+
47
+ This repo contains large CSV files. Use Git LFS or `huggingface-cli upload` / `huggingface_hub` upload helpers rather than dragging hundreds of files into the browser.
48
+
49
+ Keep the folder names exactly as-is:
50
+
51
+ - `Data`
52
+ - `Alt Data`