Automated Cryptocurrency Trading Bot with Python - Pt. 5 Live Trading on the Binance API

Поділитися
Вставка
  • Опубліковано 17 жов 2024
  • Part 5 of the automated cryptocurrency trading series. In this video, we begin to implement a simple trading strategy on the Binance API.
    View the rest of the series:
    • Cryptocurrency Trading...
    Full code on GitHub:
    github.com/The...

КОМЕНТАРІ • 15

  • @azrulfyz1162
    @azrulfyz1162 2 роки тому

    Thanks for doing a live coding tutorials, love seeing the step by step process how you solve and implement solution. I am grateful...

  • @victorgc44
    @victorgc44 Рік тому

    First of all, great work and thank you for all the information presented in the video series. Second, i have something to add/help: The "get_precision" function is not considering the step_size of the coins and that causes "LOT_SIZE" error. I modified to: get_precision(self, symbol):
    step_size = 0.0
    for f in self.client.get_symbol_info(f'{symbol}USDT')['filters']:
    if f['filterType'] == 'LOT_SIZE':
    step_size = float(f['stepSize'])
    prec = int(round(-math.log(step_size, 10), 0))
    return prec

  • @MilankaPerera
    @MilankaPerera 3 роки тому

    great content for beginners trying to learn algotrading with python. looking forward to the next video.

  • @ΠαναγιώτηςΛουκοπουλος-ι7β

    Congratulations for the great job and the explanation but the bot running without buy or sell orders... Can I do something to run with real trades?

  • @rjperfumado
    @rjperfumado 2 роки тому

    Great explain! Tks for this content and help!

  • @somedude2050
    @somedude2050 2 роки тому

    this ( ♥ ) is for you, thanks for the effort u put into to these videos :)

  • @emmang2010
    @emmang2010 2 роки тому

    Awesome video. Question, I have heard one can't access Binance in the USA, only Binance US. When it comes to their api, are they one and the same? If I'm in the US can I follow along with these videos and make a Binance account?

    • @theprincipalcomponent
      @theprincipalcomponent  2 роки тому

      if you are in the US you are correct you, will have to use Binance US. I am in the US as well; in the code when I initialize the Client you’ll see the parameter tld='us' , this is what actually specifies the US version. Part 1 of the series details how to set up that API connection. As far as I can tell the only difference between the two is the variety of crypto pairs offered. Hope that helps!

    • @emmang2010
      @emmang2010 2 роки тому

      @@theprincipalcomponent It does help indeed and thank you for the response. Keep up the insane work.

  • @cryptolicious3738
    @cryptolicious3738 2 роки тому

    awesome video bro !

  • @MrSathish9840
    @MrSathish9840 3 роки тому +1

    Need some zoom

    • @theprincipalcomponent
      @theprincipalcomponent  3 роки тому

      Will try to do better resolution / larger text in future videos, thanks for the input. For now if you can’t make something out, feel free to take a look on GitHub! Link is in description.

    • @cryptolicious3738
      @cryptolicious3738 2 роки тому

      @@theprincipalcomponent u have a twitter or ? didnt see any socials contacts on ur github nor yt about tab.

  • @chadmichqel2116
    @chadmichqel2116 2 роки тому

    The TV should make kids want to look up to people like you instead of... bad actors.

    • @chadmichqel2116
      @chadmichqel2116 2 роки тому

      Amazing code by the way! I feel like this is going to be very profitable. Thanks for sharing.