Datasets:
License:
Add qlib CSI300 test datasets
Browse files- README.md +24 -0
- quantaalpha_testdata.h5 +3 -0
- quantaalpha_testdata_debug.h5 +3 -0
README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# How to read files.
|
| 2 |
+
For example, if you want to read `filename.h5`
|
| 3 |
+
```Python
|
| 4 |
+
import pandas as pd
|
| 5 |
+
df = pd.read_hdf("filename.h5", key="data")
|
| 6 |
+
```
|
| 7 |
+
NOTE: **key is always "data" for all hdf5 files **.
|
| 8 |
+
|
| 9 |
+
# Here is a short description about the data
|
| 10 |
+
|
| 11 |
+
| Filename | Description |
|
| 12 |
+
| -------------- | -----------------------------------------------------------------|
|
| 13 |
+
| "daily_pv.h5" | Adjusted daily price and volume data. |
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
# For different data, We have some basic knowledge for them
|
| 17 |
+
|
| 18 |
+
## Daily price and volume data
|
| 19 |
+
$open: open price of the stock on that day.
|
| 20 |
+
$close: close price of the stock on that day.
|
| 21 |
+
$high: high price of the stock on that day.
|
| 22 |
+
$low: low price of the stock on that day.
|
| 23 |
+
$volume: volume of the stock on that day.
|
| 24 |
+
$factor: factor value of the stock on that day.
|
quantaalpha_testdata.h5
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a357dcc5f641161af9661d9b1605f2f66844de37f8e02b0bc881e87ed16f3e9b
|
| 3 |
+
size 398130836
|
quantaalpha_testdata_debug.h5
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03816baa04a9ccefeaca8ccd6968c30f6a9a879330ae496d6fa19d6cd3208ebc
|
| 3 |
+
size 1407056
|