{"id":24374633,"url":"https://github.com/telebotmake/btc_signal_bot","last_synced_at":"2025-03-12T11:41:36.995Z","repository":{"id":271790985,"uuid":"914328643","full_name":"telebotmake/btc_signal_bot","owner":"telebotmake","description":"This is a Telegram bot that provides buy and sell signals for Bitcoin based on various technical indicators and candlestick patterns. 📊 The bot uses CoinGecko API to fetch real-time Bitcoin price data and TA-Lib for technical analysis. 💹","archived":false,"fork":false,"pushed_at":"2025-01-10T08:03:12.000Z","size":31,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-19T05:41:23.089Z","etag":null,"topics":["bitcoin","btc","predictor","price","price-tracker","telegram","telegrambot","tool"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/telebotmake.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-09T11:37:13.000Z","updated_at":"2025-01-13T11:12:07.000Z","dependencies_parsed_at":"2025-01-09T22:45:08.572Z","dependency_job_id":"d4387bda-0257-4bd7-8f66-9d41f70c8fbb","html_url":"https://github.com/telebotmake/btc_signal_bot","commit_stats":null,"previous_names":["telebotmake/btc_signal_bot"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telebotmake%2Fbtc_signal_bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telebotmake%2Fbtc_signal_bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telebotmake%2Fbtc_signal_bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telebotmake%2Fbtc_signal_bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/telebotmake","download_url":"https://codeload.github.com/telebotmake/btc_signal_bot/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243213850,"owners_count":20254879,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bitcoin","btc","predictor","price","price-tracker","telegram","telegrambot","tool"],"created_at":"2025-01-19T05:40:57.298Z","updated_at":"2025-03-12T11:41:36.975Z","avatar_url":"https://github.com/telebotmake.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bitcoin Signal Bot 🚀\n\nThis is a **Telegram bot** that provides **buy** and **sell** signals for **Bitcoin** based on various technical indicators and candlestick patterns. 📊 The bot uses **CoinGecko API** to fetch real-time Bitcoin price data and **TA-Lib** for technical analysis. 💹\n\n## Features 🌟\n\n- **Buy and Sell Signals** 💰: The bot generates trading signals based on multiple indicators such as:\n  - **SMA (Simple Moving Average)** 📈\n  - **RSI (Relative Strength Index)** 📉\n  - **MACD (Moving Average Convergence Divergence)** 🔄\n  - **Bollinger Bands** 📊\n  - **Candlestick Patterns** (e.g., Doji, Hammer) 🔥\n\n- **Real-Time Bitcoin Price** 💸: Displays the current price of Bitcoin along with the trading signal.\n- **Telegram Bot Interface** 🤖: The bot is built on Telegram’s Bot API to allow easy interaction with users.\n\n## Prerequisites 🛠️\n\n- **Python 3.7+**: Make sure you have Python 3.7 or later installed.\n- **Telegram Bot API Token**: You’ll need to create a bot on Telegram and get its API token. 📲\n\n## Installation 🏗️\n\n### 1. Clone the Repository\n\nClone this repository to your local machine:\n\n```bash\ngit clone https://github.com/your-username/bitcoin-signal-bot.git\ncd bitcoin-signal-bot\n```\n\n### 2. Create a Virtual Environment (Optional but recommended)\n\nIt's best to create a virtual environment to avoid conflicts with other Python packages on your system. 🧑‍💻\n\n```bash\npython -m venv venv\n```\n\nActivate the virtual environment:\n\n- On Windows:\n\n  ```bash\n  .\\venv\\Scripts\\activate\n  ```\n\n- On macOS/Linux:\n\n  ```bash\n  source venv/bin/activate\n  ```\n\n### 3. Install the Required Dependencies 📦\n\nInstall the necessary Python packages using `pip`:\n\n```bash\npip install -r requirements.txt\n```\n\n### 4. Configure the Bot 📝\n\nYou need to add your **Telegram Bot API token**. Open `bot.py` and replace the placeholder `your_telegram_bot_token` with your bot’s API token.\n\n```python\nAPI_TOKEN = \"your_telegram_bot_token\"  # Replace with your actual token\n```\n\n### 5. Run the Bot 🚀\n\nTo run the bot, execute the following command:\n\n```bash\npython bot.py\n```\n\nThe bot will start and listen for incoming commands like `/start` and `/signal`. 🎯\n\n## Commands 📜\n\n- `/start` 🎉: Displays a welcome message and an overview of how the bot works.\n- `/signal` 🔥: Provides the latest buy/sell signal along with the reasoning based on technical indicators and candlestick patterns.\n\n## Python Dependencies 🐍\n\nThe bot requires the following Python packages:\n\n- `requests`: To fetch data from the CoinGecko API. 🌍\n- `pandas`: For handling data in tabular form. 🗃️\n- `talib`: For technical analysis (used for calculating indicators). 📊\n- `telegram`: For interacting with the Telegram Bot API. 🤖\n\nTo install the dependencies, you can use:\n\n```bash\npip install requests pandas talib telegram\n```\n\nAlternatively, you can use the `requirements.txt` file to install all dependencies:\n\n```bash\npip install -r requirements.txt\n```\n\n## Customization 🛠️\n\nFeel free to modify the bot to add more indicators, adjust the logic for buy/sell signals, or customize the messages. ✨\n\n## License 📝\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. 📜\n\n## Support 💬\n\nFor any issues or questions, feel free to open an issue on the GitHub repository or contact me directly. 💌\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftelebotmake%2Fbtc_signal_bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftelebotmake%2Fbtc_signal_bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftelebotmake%2Fbtc_signal_bot/lists"}