Telegram Market Bot with AlphaVantage
Go to file
Nicco a78547159f
Update README.md
2019-12-23 17:57:12 +01:00
assets assets 2019-06-17 19:46:36 +02:00
src dropped yaml file and dependency for 2 env vars 2019-12-23 17:23:59 +01:00
.dockerignore docker cleanup 2019-12-23 10:45:38 +01:00
.gitignore ignore env file with actual credentials 2019-12-23 17:27:38 +01:00
Dockerfile docker cleanup 2019-12-23 10:45:38 +01:00
README.md Update README.md 2019-12-23 17:57:12 +01:00
docker-compose.dev.yml ignore env file with actual credentials 2019-12-23 17:27:38 +01:00
docker-compose.yml dropped yaml file and dependency for 2 env vars 2019-12-23 17:23:59 +01:00
requirements.txt dropped yaml file and dependency for 2 env vars 2019-12-23 17:23:59 +01:00

README.md

mercatus

Telegram Bot that send you updates about stocks/etf/etc. supported by Alpha Vantage. They offfer a free tier API Key, so this is completely free.

🚀 Quickstart

Simply chat with the @MercatusBot

🖥 Self-Hosting

You can host it yourself of course. You will need a server.

From a prebuilt docker image

wget https://raw.githubusercontent.com/cupcakearmy/mercatus/master/docker-compose.yml

# Set your own telegram bot token
vim docker-compose.yml

docker-compose up -d

Completely from source

git clone https://github.com/cupcakearmy/mercatus

# Insert the variables found in the docker-compose.yml file with your token
touch .env
vim .env

docker-compose -f docker-compose.dev.yml up -d