This parsing algorithm allows you to parse so called "cryptocurrency signals". These signals are commonly found in telegram groups and are formatted based on their source. However, it would be way more organized if all these signals would share the same format. Well, that's exactly what this program does. It can be used just to monitor trades more easily, but is best when it is combined with an autotrading algorithm you already own.
- Parse symbols / (entry, target, stop loss)
- Write more in depth documentation.
- Add Telegram / discord integration
- Migrate the project to NodeJs
- Adding a frontend/UI for easier usage
- Add Binance integration for automated trading.
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
I'm aiming towards making an app which is used by the client, which everyone can use to automatically open trades that are posted in telegram groups. So even if you're busy that day, you can still follow the trades posted in the channels you follow. I believe this would enable people to trade more efficiently and allow them to not be on their phone, worrying about missing anything.
- Clone this repository.
- Install the necessary requirements.
- Update the
API_ID
,API_HASH
andAPP_NAME
in config/config.yml. For API key and id go to https://my.telegram.org/apps - Run the app using python3 main.py
- Enable/disable channels using the menu
- Start listening to signals using the second menu option.
CTK / USDT
LONG : 1.38
Leverage X10 X25
Target :
TARGET 1 : 1.43$
TARGET 2 : 1.49$
TARGET 3 : 1.53$
TARGET 4 : 1.58$
STOP : 1.28$
{
"symbol": "CTKUSDT",
"entry": [
1.38
],
"targets": [
1.43,
1.49,
1.53,
1.58
],
"stop_loss": [
1.28
]
}