diff --git a/LICENSE b/LICENSE index e902599..6847012 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 vsnz +Copyright (c) 2020 fabston Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index f9320bf..305a0e9 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ -

+

Python version - GitHub license - GitHub issues - GitHub pull requests -
GitHub stars - GitHub forks - GitHub watchers + GitHub license + GitHub issues + GitHub pull requests +
GitHub stars + GitHub forks + GitHub watchers

@@ -35,19 +35,19 @@ I am running my own TradingView Webhook Service. No setup and hosting required. - Slack Support using [webhooks](https://api.slack.com/messaging/webhooks) - Twitter Support using the [tweepy](https://github.com/tweepy/tweepy) libary - Email Support using [smtplib](https://docs.python.org/3/library/smtplib.html) -- Alert channels can be enabled or disabled in [`config.py`](https://github.com/vsnz/TradingView-Webhook-Bot/blob/master/config.py) +- Alert channels can be enabled or disabled in [`config.py`](https://github.com/fabston/TradingView-Webhook-Bot/blob/master/config.py) - Dynamically send alerts to different Telegram and/or Discord channels - TradingView `{{close}}`, `{{exchange}}` etc. variables support. Read more [here](https://www.tradingview.com/blog/en/introducing-variables-in-alerts-14880/) -> 💡 Got a feature idea? Open an [issue](https://github.com/vsnz/TradingView-Webhook-Bot/issues/new) and I might implement it. +> 💡 Got a feature idea? Open an [issue](https://github.com/fabston/TradingView-Webhook-Bot/issues/new) and I might implement it. ## Installation -> ⚠️ Best to run the bot on a VPS. I can recommend Hetzner's CX11 VPS for 2.89€/month. -1. Clone this repository `git clone https://github.com/vsnz/TradingView-Webhook-Bot.git` +> ⚠️ Best to run the bot on a VPS. I can recommend Hetzner's CX11 VPS for 2.89€/month. +1. Clone this repository `git clone https://github.com/fabston/TradingView-Webhook-Bot.git` 1. Create your virtual environment `python3 -m venv TradingView-Webhook-Bot` 1. Activate it `source TradingView-Webhook-Bot/bin/activate && cd TradingView-Webhook-Bot` 1. Install all requirements `pip install -r requirements.txt` -1. Edit and update [`config.py`](https://github.com/vsnz/TradingView-Webhook-Bot/blob/master/config.py) +1. Edit and update [`config.py`](https://github.com/fabston/TradingView-Webhook-Bot/blob/master/config.py) 1. Setup TradingView alerts. An example alert message would be: ```json { @@ -58,14 +58,14 @@ I am running my own TradingView Webhook Service. No setup and hosting required. "msg": "Long *#{{ticker}}* at `{{close}}`" } ``` - - `key` is mandatory! It has to match with `sec_key` in [`config.py`](https://github.com/vsnz/TradingView-Webhook-Bot/blob/master/config.py). It's an extra security measurement to ensure nobody else is executing your alerts + - `key` is mandatory! It has to match with `sec_key` in [`config.py`](https://github.com/fabston/TradingView-Webhook-Bot/blob/master/config.py). It's an extra security measurement to ensure nobody else is executing your alerts - `telegram`, `discord`, `slack` is optional. If it is not set it will fall back to the config.py settings - `msg` can be anything. Markdown for [Telegram](https://core.telegram.org/api/entities) and [Discord](https://support.discord.com/hc/en-us/articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline-) is supported as well - TradingViews variables like `{{close}}`, `{{exchange}}` etc. work too. More can be found [here](https://www.tradingview.com/blog/en/introducing-variables-in-alerts-14880/) - Your webhook url would be `http:///webhook` 1. If you use a firewall be sure to open the corresponding port 1. Run the bot with `python main.py` -1. [PM2](https://github.com/vsnz/TradingView-Webhook-Bot/issues/28#issuecomment-766301062) can help you in running the app in the background / on system boot. +1. [PM2](https://github.com/fabston/TradingView-Webhook-Bot/issues/28#issuecomment-766301062) can help you in running the app in the background / on system boot. *It is recommended to run flask on a different port like 8080. It is then necessary to forward port 80 to 8080.* @@ -73,10 +73,10 @@ I am running my own TradingView Webhook Service. No setup and hosting required. ![Webhook Bot](https://i.imgur.com/vZA42cc.png) ## How can I help? -All kinds of contributions are welcome 🙌! The most basic way to show your support is to `⭐️ star` the project, or raise [`🐞 issues`](https://github.com/vsnz/TradingView-Webhook-Bot/issues/new). +All kinds of contributions are welcome 🙌! The most basic way to show your support is to `⭐️ star` the project, or raise [`🐞 issues`](https://github.com/fabston/TradingView-Webhook-Bot/issues/new). ***

- Buy Me A Coffee + Buy Me A Coffee

\ No newline at end of file diff --git a/config.py b/config.py index 860e68c..bb2d55e 100644 --- a/config.py +++ b/config.py @@ -1,6 +1,6 @@ # ----------------------------------------------- # # Plugin Name : TradingView-Webhook-Bot # -# Author Name : vsnz # +# Author Name : fabston # # File Name : config.py # # ----------------------------------------------- # diff --git a/handler.py b/handler.py index e9e7a53..add0fff 100644 --- a/handler.py +++ b/handler.py @@ -1,6 +1,6 @@ # ----------------------------------------------- # # Plugin Name : TradingView-Webhook-Bot # -# Author Name : vsnz # +# Author Name : fabston # # File Name : handler.py # # ----------------------------------------------- # diff --git a/main.py b/main.py index f66bcf8..1260497 100644 --- a/main.py +++ b/main.py @@ -1,6 +1,6 @@ # ----------------------------------------------- # # Plugin Name : TradingView-Webhook-Bot # -# Author Name : vsnz # +# Author Name : fabston # # File Name : main.py # # ----------------------------------------------- #