Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -40,42 +40,50 @@ tags:
|
|
| 40 |
- tweet
|
| 41 |
- collection
|
| 42 |
---
|
| 43 |
-
|
| 44 |
-
# Financial Sentiment Analysis Dataset
|
| 45 |
|
| 46 |
## Overview
|
| 47 |
-
This dataset
|
| 48 |
|
| 49 |
## Data Description
|
| 50 |
-
|
|
|
|
|
|
|
|
|
|
| 51 |
|
| 52 |
### Dataset Structure
|
| 53 |
-
- **
|
| 54 |
-
- **
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
|
| 56 |
## Dataset Size
|
| 57 |
-
- **
|
| 58 |
-
- **
|
| 59 |
-
- **
|
| 60 |
-
|
| 61 |
-
## Sources
|
| 62 |
-
This dataset is an amalgamation of data from various reputable sources, each contributing a unique perspective on financial sentiment:
|
| 63 |
-
|
| 64 |
-
- [FIQA Sentiment Classification](https://huggingface.co/datasets/ChanceFocus/fiqa-sentiment-classification): A sentiment analysis dataset with 721 positive, 379 negative, and 11 neutral sentiments.
|
| 65 |
-
- [Stock Market Tweets Data](https://ieee-dataport.org/open-access/stock-market-tweets-data): A collection of tweets with 523 positive, 420 neutral, and 341 negative sentiments.
|
| 66 |
-
- [Stock Related Tweet Sentiment](https://www.kaggle.com/datasets/mattgilgo/stock-related-tweet-sentiment): A dataset featuring 5005 positive, 741 neutral, and 736 negative sentiments.
|
| 67 |
-
- [Master Thesis Data](https://github.com/moritzwilksch/MasterThesis/tree/main): Includes 3711 positive, 2784 neutral, and 2167 negative sentiments.
|
| 68 |
-
- [Twitter Stock Sentiment](https://github.com/poojathakoor/twitter-stock-sentiment): Comprises 702 positive, 595 negative, and 481 neutral sentiments.
|
| 69 |
-
- [Crypto Sentiment](https://github.com/surge-ai/crypto-sentiment/tree/main): Sentiment data for cryptocurrency-related tweets with 296 positive and 256 negative sentiments.
|
| 70 |
-
- [Stock Sentiment](https://github.com/surge-ai/stock-sentiment/tree/main): Sentiment analysis on stock-related tweets, including 327 positive and 173 negative sentiments.
|
| 71 |
-
- [Stockmarket Sentiment Dataset](https://www.kaggle.com/datasets/yash612/stockmarket-sentiment-dataset): Features 3685 positive and 2106 negative sentiments.
|
| 72 |
-
- [Twitter Financial News Sentiment](https://huggingface.co/datasets/zeroshot/twitter-financial-news-sentiment): Contains 2398 positive, 1789 negative, and 7744 neutral sentiments.
|
| 73 |
|
| 74 |
## Usage
|
| 75 |
-
This dataset is ideal for training and evaluating machine learning models for sentiment analysis,
|
| 76 |
-
|
| 77 |
-
## Acknowledgments
|
| 78 |
-
We extend our heartfelt gratitude to all the authors and contributors of the original datasets. Their efforts in data collection and curation have been pivotal in creating this comprehensive resource.
|
| 79 |
|
| 80 |
## License
|
| 81 |
-
This dataset is made available under the MIT license
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
- tweet
|
| 41 |
- collection
|
| 42 |
---
|
| 43 |
+
# Financial Trading Signals Sentiment Dataset
|
|
|
|
| 44 |
|
| 45 |
## Overview
|
| 46 |
+
This dataset contains 4,664 trading signals extracted from Telegram group chats, focused on financial instruments such as Forex pairs, commodities (Gold, Silver), stocks, and indices. Each signal is labeled with a sentiment value for use in financial sentiment analysis and machine learning applications.
|
| 47 |
|
| 48 |
## Data Description
|
| 49 |
+
Each record represents a trading signal and includes fields for symbol, sentiment (both text and integer), action, entry price, target, stop loss, time frame, original text, photo filename, and timestamp. Sentiment is mapped as follows:
|
| 50 |
+
- `0`: Neutral
|
| 51 |
+
- `1`: Bullish
|
| 52 |
+
- `2`: Bearish
|
| 53 |
|
| 54 |
### Dataset Structure
|
| 55 |
+
- **symbol**: Trading pair/instrument (e.g., "EURUSD", "GOLD", "GBPUSD")
|
| 56 |
+
- **sentiment**: Market sentiment ("Bullish", "Bearish", "Neutral")
|
| 57 |
+
- **sentiment_int**: Sentiment as integer (0=neutral, 1=bullish, 2=bearish)
|
| 58 |
+
- **action**: Trading action ("BUY", "SELL")
|
| 59 |
+
- **entry_price**: Entry price level
|
| 60 |
+
- **target**: Target price level
|
| 61 |
+
- **stop_loss**: Stop loss price level
|
| 62 |
+
- **time_frame**: Trading timeframe (e.g., "1H", "4H", "12H")
|
| 63 |
+
- **text**: Original signal text from Telegram
|
| 64 |
+
- **photo**: Associated chart image filename
|
| 65 |
+
- **timestamp**: Signal timestamp
|
| 66 |
|
| 67 |
## Dataset Size
|
| 68 |
+
- **Total Signals**: 4,664
|
| 69 |
+
- **Bullish Sentiments**: 2,026
|
| 70 |
+
- **Bearish Sentiments**: 2,298
|
| 71 |
+
- **Neutral Sentiments**: (calculated from sentiment_int == 0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
|
| 73 |
## Usage
|
| 74 |
+
This dataset is ideal for training and evaluating machine learning models for financial sentiment analysis, market trend prediction, and NLP tasks related to trading signals. It can be used for academic research, financial analytics, and developing AI tools for financial institutions.
|
|
|
|
|
|
|
|
|
|
| 75 |
|
| 76 |
## License
|
| 77 |
+
This dataset is made available under the MIT license.
|
| 78 |
+
|
| 79 |
+
## Citation
|
| 80 |
+
If you use this dataset in your research, please cite:
|
| 81 |
+
|
| 82 |
+
```bibtex
|
| 83 |
+
@dataset{telegram_financial_signals_2025,
|
| 84 |
+
title={Financial Trading Signals Sentiment Dataset},
|
| 85 |
+
author={JonusNattapong},
|
| 86 |
+
year={2025},
|
| 87 |
+
url={https://github.com/JonusNattapong/Telegram-Group-Financial}
|
| 88 |
+
}
|
| 89 |
+
```
|