Sem categoria

Build a Real-Time Crypto Trading Bot in under 100 Lines of Code





* O link do vídeo está no final desse post.

Descubra tudo sobre Robô IQ OPTION de AUTOMATIZAÇÃO de Lista de SINAIS
E conheça também sobre o Melhor Bot Para Opções Binárias 2022
Que tal um robo gratuito para IQ Option? Sistema Para IQ Option Grátis





In this video, I show you how to use Python to receive cryptocurrency price data over websockets, how to apply TA-Lib indicators …

Vídeo no Youtube

Gosta de dicas de futebol para investimento desportivo? Então visita agora mesmo Palpites Copa do Mundo e prepara-se para viver a emoção do maior campeonato do planeta.





45 Comentários

  1. Question – For the 'closes' array when performing the RSI calculation, is this a constant moving 15 datapoints or is it whenever the RSI is calculated it takes into consideration all of the datapoints within the array no matter how long, any idea when this list should be dumped? once a day?

  2. Gran tutorial 🤩 lo haces con mucha pasión se nota que amas lo que haces.

    Últimamente eh visto muchos programadores dando y enseñando sus conocimientos de estos bots , mi pregunta es: ¿Ustedes ya sacaron beneficios de su obra de arte? Espero que si pocos enseñan estos conocimientos otros los venden..

  3. I got rhis error 🙁 an exception occured – APIError(code=-2010): Account has insufficient balance for requested action.

  4. Thank you very much for making these videos, they have been extremely helpful, you are a good teacher. They have served as a great introduction to programming for me so thank you.

  5. CHITUS💙⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻ disse:

    Thanks a lot for that great tutorial!

  6. I did this and was debugging issues, got it to work and started adding on to it. As I was developing, I ran my code several times in a row within a couple of min and now the datastream from binance is not coming through. Has my IP been ban?

  7. Great content ! Thank bro ! Is it possible to use your code to place futures order with leverage/SL/TP , how to keep track all positions which i have ? Thanks for your help

  8. I have programmed in 10 languages from basic scripting to C++ but hadn't gotten into python. Looks easy enough. I've been getting into investing and just learning. My first thought was the strategy blows, but keeping that part simple is the right idea. I really liked what you did here. Mine will obviously be much more complex but it was great to just see a basic example. Also your deriving RSI was fascinating, but I was happy to see it wasn't needed. Thanks.

  9. May I ask a question?
    I could see "print (is_candle_closed)" is True/False
    But eveything after " if is_candle_closed: " is no show.
    Is that because my computer too slow, they miss the moment candle bar is closed?
    Or something related to the Binance API? ex:only allow one time ?
    (woops this is the 666 comments)

  10. This was by far the most helpful crypto bot video I have found on YouTube, thank you for going into so much detail!

  11. I just copied and pasted the same code, pip installed what's necessary but WebSocket connection is getting closed everytime I run the code. Any help is appreciated

  12. HI! Can someone please help me? I was doing everything just like in the video. I made it to the half of it. I was running the program and getting back the kline data and everything was working fine. I saved the project, turned off the computer and went to sleep. After turning it back on the next day it is not working. I run it just like I did before and nothing happens. It stops just after a few seconds giving nothing back. It is very frustrating. Please, guys help me!

  13. Hi Larry

    Thank you so much for this excellent video. I am trying to implement the code on a VPS and I'm wondering what would be the minimum software requirements for the code in terms of CPU, Memory and Bandwidth? Thank you for your help
    Best regards,
    J

  14. Hi, just a question about he RSI, should we be using the 70 & 30 or i can i use 60 %40 or 55 & 45 ?

  15. today I chose to start self teach myself about coding and making bots to trade crypto currency etc LOL fml

  16. Hi, the tutorial is fine, i tried but it's not buying or selling, it was running for 24h non stop. i can see all output in console but in binance order history i see nothing.

  17. Hello Mr.Larry, I watched all of your videos which is about python-binance. I am trying to get all the coins datas as real time (websocket) in binance for my website. I watched your second part but you are getting only btcusdt – 5m interval. I made selection/option which includes intervals and created a table for coins datas. So how can i get all coins datas in one interval in one websocket and how can i stop that websocket when i change the interval ?
    I tried for loop which is interesting 😀 and didn't work. Waiting for your answers.

    Regards,
    -MMA

  18. I really like this channel. I am starting writting my own python codes and your channel is invaluable.

  19. hey brother ,
    thank you kindly for replying to my last email,
    I still see 0 transactions which i'm not worried about cause the balance is actually changing.
    I was wondering if there a line to add to the code that will apply the 30 / 70 based on the current ETH price that's live on the website.
    Thank again for replying =)

  20. Hi,
    thanks for the video. But I am stuck on create the websocket connection.
    I only get closed connection. I have add error function and I get the following:
    error connection
    [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)
    closed connection

    any help! ?

  21. I really like the video. Thank you so much!

    On another note, is it possible to screen several symbols/markets for buy signals at once?

  22. wow, Finally followed this till the end, was very insightful, but I was a little disappointed that the bot sold at loss on the first trail, what of a check to know if the present price is higher than the price bought when a the price was over-bought maybe by a little percentage, I am definitely going to build my own Bot in the near future,

  23. Waow that is really really really awesome – i love to trade on MT4 and MT5 and wished to learn python with it – now i found your channel – hell that is awesome to learn with what you love to do 🙂 Will you also show how to make your AI bot?

  24. Hello Man , why wenn I try to run this code I don't receive a result ?

    import websocket

    SOCKET = "wss://stream.binance.com:9443/ws/ethusdt@kline_1m"

    def on_open(ws):
    print('opened connection')

    def on_close(ws):
    print('closed connection')

    def on_message(ws, message):
    print('received message')
    print(message)

    ws = websocket.WebSocketApp(SOCKET, on_open=on_open, on_close=on_close, on_message=on_message)

    ws.run_forever()