You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/component/data.rst
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ Also, ``Qlib`` provides a high-frequency dataset. Users can run a high-frequency
52
52
Qlib Format Dataset
53
53
-------------------
54
54
``Qlib`` has provided an off-the-shelf dataset in `.bin` format, users could use the script ``scripts/get_data.py`` to download the China-Stock dataset as follows. User can also use numpy to load `.bin` file to validate data.
55
-
The price volume data look different from the actual dealling price because of they are **adjusted** (`adjusted price <https://www.investopedia.com/terms/a/adjusted_closing_price.asp>`_). And then you may find that the adjusted price may be different from different data sources. This is because different data sources may vary in the way of adjusting prices. Qlib normalize the price on first trading day of each stock to 1 when adjusting them.
55
+
The price volume data look different from the actual dealing price because of they are **adjusted** (`adjusted price <https://www.investopedia.com/terms/a/adjusted_closing_price.asp>`_). And then you may find that the adjusted price may be different from different data sources. This is because different data sources may vary in the way of adjusting prices. Qlib normalize the price on first trading day of each stock to 1 when adjusting them.
56
56
Users can leverage `$factor` to get the original trading price (e.g. `$close / $factor` to get the original close price).
57
57
58
58
Here are some discussions about the price adjusting of Qlib.
@@ -146,7 +146,7 @@ Users can also provide their own data in CSV format. However, the CSV data **mus
146
146
| SH600000 | 120 |
147
147
+-----------+-------+
148
148
149
-
- CSV file **must** includes a column for the date, and when dumping the data, user must specify the date column name. Here is an example:
149
+
- CSV file **must** include a column for the date, and when dumping the data, user must specify the date column name. Here is an example:
0 commit comments