Nandhugp
Power Member
- Jan 24, 2013
- 578
- 286
So I have seen this thread https://www.blackhatworld.com/seo/how-to-multiply-your-crypto-2x-3x-in-two-hours.1363970/ here and he basically tells a method to invest in crypto when its announced on binance. But so many people will miss out the announcement if they do not check it regularly. So for those people I have made a python script to make it work. I previously made a bot for coingecko but this was much easier for me. I have made the bot just now and haven't run for a long time. I will be running this bot on the coming days so if you want to give me feedback or some extra features I would be glad to work on it.
If you don't know how to create ur own bot in telegram, follow this to create one and set ur token ID

To get chat Id follow this

https://api.telegram.org/bot<YourBOTToken>/getUpdates
You can buy a VPS and run this full time. If you have any questions, feel free to ask in comments. Also if you wish to add new features tell me.
Python:
from selenium import webdriver
from telegram import *
from telegram.ext import *
top=""
for i in range(0,10000000000000000):
chrome_options = webdriver.ChromeOptions()
#chrome_options.add_argument('--proxy-server=%s' % proxy)
chrome = webdriver.Chrome("chromedriver path")
chrome.get("https://www.binance.com/en/support/announcement/c-48?navId=48")
mytext = chrome.find_elements_by_class_name('css-1ej4hfo')
coin_name=mytext
print(coin_name[0].text)
if (coin_name[0].text!=top):
print(coin_name[0].text)
top=coin_name[0].text
bot=Bot("TOKEN")
updater=Updater("TOKEN",use_context=True)
updater.dispatcher.bot.sendMessage(chat_id='CHAT ID', text=str(top))
chrome.close()
If you don't know how to create ur own bot in telegram, follow this to create one and set ur token ID

To get chat Id follow this

https://api.telegram.org/bot<YourBOTToken>/getUpdates
You can buy a VPS and run this full time. If you have any questions, feel free to ask in comments. Also if you wish to add new features tell me.