My python script to find new crypto listed on Binance Announcment

Nandhugp

Power Member
Joined
Jan 24, 2013
Messages
578
Reaction score
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.
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
1637249148928.png


To get chat Id follow this

1637249520110.png

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.
 
You can run an instance of changedetection.io to do this.

https://github.com/dgtlmoon/changedetection.io
apprise, the library it uses for notifications is super useful also.

https://github.com/caronc/apprise
 
any chance you can do screenshots of how to set this up?

when i go to my bot channel, /start /help do nothing
 
Glanced through the code. I would suggest the following:

Replace the for-loop with an infinite while loop (while True: ).

Enclose the whole logic within the loop inside a try-except block so that the bot auto restarts in case of an error.

Consider adding a sleep inside the loop to avoid getting banned by Binance.
 
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.
 
Added some recommendations made by @iwillnbd

Python:
from selenium import webdriver
from telegram import *
from telegram.ext import *


top=""
coin_name=[]
while True:
    #Uncomment the below line if you want to add a delay between each checks
    #time.sleep(5000)

    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()
 
any chance you can do screenshots of how to set this up?

when i go to my bot channel, /start /help do nothing
There are tons of tutorials if you look up. youtube or google


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.
How does he buys them automatically? Does his bot extract the coininame from the text and auto trade?
 
hi, where does it buy coins? Does it buy on binance or other excahnges before binance listing? Thanks
 
where can i integrate my binance or other exchanges api there on the source code?
 
The telegram stuff looks good, but selenium is not required for this, if you check in the page source the data is available in script tag with id "__ExchangeHeader_DATA". Just use requests and library to parse html like bs4 or lxml. This will make the bot way faster and reduce a lot of the overhead.
 
Thank you for your code. However, I don't think the method actually work. The second the news come up in Binance, the Price already soar a lots, you need to know about the coin before the news come up (atleast 1 hour in my opinion) to make profits.
But the code is nice.
 
Neat stuff. Wouldn't it be great if the bot bought the coin/token for you too? :D Guess we need to create a Telegram group and take turns to sleep.
 
There are tons of tutorials if you look up. youtube or google



How does he buys them automatically? Does his bot extract the coininame from the text and auto trade?
Yeah...mostly, these are listed on pancake swap, uniswap
 
Hi Mate
Thank you for your bot
when I run this bot message appear tells
Traceback (most recent call last):
File "main.py", line 3, in <module>
from telegram.ext import *
ModuleNotFoundError: No module named 'telegram.ext'
Thank you
 
Back
Top