oliverwang15
commited on
Commit
•
d363607
1
Parent(s):
08b275a
Update README.md
Browse files
README.md
CHANGED
@@ -122,3 +122,33 @@ configs:
|
|
122 |
- split: test
|
123 |
path: data/test-*
|
124 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
- split: test
|
123 |
path: data/test-*
|
124 |
---
|
125 |
+
|
126 |
+
# US Stock News With Price
|
127 |
+
> A stock news and price dataset design for the alignment between financial news and the market. **Please only use for academic purpose.**
|
128 |
+
|
129 |
+
## 1. Data Description
|
130 |
+
* **date**: The date of the news published.
|
131 |
+
* **stock**: The symbol of the stocks the news related to. (checked by whether title or content has the company information.
|
132 |
+
* **title**: The title of the news.
|
133 |
+
* **content**: The content of the news.
|
134 |
+
* **trading_date**: Here is the assumed trading date, which should be the next date of the publish date.
|
135 |
+
* **exact_trading_date**: The exact next trading date after the news was made public.
|
136 |
+
* **ts_{-30...-1}**: Stock prices before the exact trading date. (30 trading days)
|
137 |
+
* **ts_0**: Stock prices of the exact trading date.
|
138 |
+
* **ts_{1...15}**: Stock prices after the exact trading date. (15trading days)
|
139 |
+
|
140 |
+
## 2.Data Split
|
141 |
+
* **Train phrase**: `exact_trading_date` < = '2021-12-31'.
|
142 |
+
* **Test phrase**: `exact_trading_date` > '2021-12-31'.
|
143 |
+
|
144 |
+
## 3. Citation
|
145 |
+
* To cite this dataset, please use the following BibTeX entry:
|
146 |
+
```
|
147 |
+
@misc{wang2024huggingface,
|
148 |
+
author = {Guoxuan Wang},
|
149 |
+
title = {US Stock News With Price: A stock news and price dataset design for the alignment between financial news and the market.},
|
150 |
+
year = {2024},
|
151 |
+
url = {https://huggingface.co/datasets/oliverwang15/us_stock_news_with_price},
|
152 |
+
note = {Available at Hugging Face.}
|
153 |
+
}
|
154 |
+
```
|