Update README.md
Browse filesadded the dataset description
README.md
CHANGED
|
@@ -27,3 +27,36 @@ configs:
|
|
| 27 |
- split: train
|
| 28 |
path: data/train-*
|
| 29 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
- split: train
|
| 28 |
path: data/train-*
|
| 29 |
---
|
| 30 |
+
|
| 31 |
+
# Stock Market Dataset
|
| 32 |
+
|
| 33 |
+
## Description
|
| 34 |
+
This dataset contains stock market data for a specific stock over a period of time. The dataset includes **daily stock prices and trading information**, which can be used for **financial analysis, time series forecasting,** and **stock price prediction**.
|
| 35 |
+
|
| 36 |
+
## Dataset Details
|
| 37 |
+
|
| 38 |
+
### **Columns:**
|
| 39 |
+
- **Date**: The trading date (**MM/DD/YYYY format**).
|
| 40 |
+
- **Open**: The opening price of the stock on that day.
|
| 41 |
+
- **High**: The highest price reached during the trading day.
|
| 42 |
+
- **Low**: The lowest price reached during the trading day.
|
| 43 |
+
- **Volume**: The number of shares traded on that day.
|
| 44 |
+
- **OpenInt**: Open interest (**often used in derivatives markets; for stocks, this might not be relevant**).
|
| 45 |
+
- **Close**: The closing price of the stock on that day.
|
| 46 |
+
|
| 47 |
+
### **Notes:**
|
| 48 |
+
- The column **Unnamed: 6** contains only NaN values and should be ignored.
|
| 49 |
+
- The dataset contains **1,582 entries**.
|
| 50 |
+
|
| 51 |
+
## Use Cases
|
| 52 |
+
- **Stock price trend analysis**.
|
| 53 |
+
- **Predictive modeling using machine learning**.
|
| 54 |
+
- **Time series forecasting for financial markets**.
|
| 55 |
+
|
| 56 |
+
## How to Use
|
| 57 |
+
You can load the dataset using the `datasets` library:
|
| 58 |
+
```python
|
| 59 |
+
from datasets import load_dataset
|
| 60 |
+
|
| 61 |
+
dataset = load_dataset("Tarakeshwaran/Hackathon_Stock_Prediction")
|
| 62 |
+
print(dataset)
|