jonas-is-coding commited on
Commit
0050152
·
verified ·
1 Parent(s): e64082e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md CHANGED
@@ -33,3 +33,32 @@ configs:
33
  - split: train
34
  path: data/train-*
35
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  - split: train
34
  path: data/train-*
35
  ---
36
+ # Yahoo Shares
37
+
38
+ This data set contains historical share information for the analysis and modelling of share price predictions. It can be used to train machine learning models that predict future share prices. All data was retrieved from the Yahoo Finance API.
39
+
40
+ ## Content of the data record
41
+
42
+ | Column | Description |
43
+ |-------------|--------|
44
+ | Adj Close | Adjusted closing price |
45
+ | Close | Closing price |
46
+ | High | Highest price of the day |
47
+ | Low | Lowest price of the day |
48
+ | Open | Opening price |
49
+ | Volume | Trading Volume |
50
+ | SMA_50 | 50-day average |
51
+ | SMA_200 | 200-day moving average |
52
+ | RSI | Relative Strength Index |
53
+ | Target | Target value (0 or 1) for labelling buy and sell decisions |
54
+
55
+ ## Utilisation
56
+
57
+ This data set is suitable for projects such as
58
+ - Time series analysis
59
+ - Prediction models for stock prices
60
+ - Classification of buy/sell signals
61
+
62
+ ## Licence
63
+
64
+ The dataset is released for educational and research purposes only. Please cite the source if you use it in publications.