My python script to find new crypto listed on Binance Announcment

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.
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
View attachment 192299


To get chat Id follow this

View attachment 192300

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.
I guess you are an amateur in coding. A professional would not create a script like this.
 
Thanks for the idea :) Going to make a different type of script that gathers other listings and auto buy and hold. Let's see if my theory will work.
 
There's already some dude on reddit r/binance who built this exact same bot few months ago, apparently he's making money. He's able to buy within 0.8-1 second of the listing If I remeber correctly.
Such a smart way to make money. This is the way new millionaries will be made.
 
Please kindly let me know if you have updated this script to work as a presale buying bot. I would love to talk to you if you’re still active here owner
 
Please kindly let me know if you have updated this script to work as a presale buying bot. I would love to talk to you if you’re still active here owner
Actually there are better free bots that can buy automatically also and my bot doesn't come closer to that to be honest.
 
Actually there are better free bots that can buy automatically also and my bot doesn't come closer to that to be honest.
Thank you for the reply. I need to know where to do my own research on these free boys, will you tell me where to start researching. I need names. Dm me if u want
 
Thank you for the reply. I need to know where to do my own research on these free boys, will you tell me where to start researching. I need names. Dm me if u want
If anybody is looking for a better bot than mine you can checkout this reddit thread


But in the comments they said its not quite profitsble even thought its superfast. I haven't tried it myself though.
 
Yes, Because coin pumps 5 mins before the announcement appears on the binance announcements page. i built one that does the same as this one about a month ago and discovered the flaws...

Does anyone know how to resolve these issues?
 
Back
Top