https://github.com/tistaharahap/pivotbot
Pivot Points everytime a new day starts
https://github.com/tistaharahap/pivotbot
Last synced: 10 months ago
JSON representation
Pivot Points everytime a new day starts
- Host: GitHub
- URL: https://github.com/tistaharahap/pivotbot
- Owner: tistaharahap
- Created: 2020-06-23T06:49:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T10:57:51.000Z (about 3 years ago)
- Last Synced: 2025-01-13T06:25:57.911Z (11 months ago)
- Language: Python
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PivotBot
This bot's only purpose is to send Pivot Points at UTC 00:00:30 to a telegram channel or chat.
## Exchanges
At the moment, these are the exchanges supported implemented using [ccxt](https://github.com/ccxt/ccxt):
* Kucoin - BTC/USD
* Bitmex - BTC/USD
* Bybit - BTC/USD
* Binance - BTC/USDT
## Running
```
$ python3 -m virtualenv env
$ . env/bin/activate
$ pip install -r requirements.txt
$ export TELEGRAM_TOKEN=your_bot_token_from_botfather
$ export TELEGRAM_USER_ID=also_known_as_chat_id
$ python app.py
```
### Docker
```
$ docker pull tistaharahap/pivotbot:latest
$ docker run --name pivotbot -e TELEGRAM_TOKEN=your_bot_token_from_botfather -e TELEGRAM_USER_ID=also_known_as_chat_id tistaharahap/pivotbot:latest
```