Automated Cryptocurrency Trading Bot with Python - Pt. 1 Gathering Data

Поділитися
Вставка
  • Опубліковано 17 жов 2024

КОМЕНТАРІ • 26

  • @antiporfavor
    @antiporfavor 2 роки тому +3

    You are out of this world. I just finished a brief course on trading bots on python, and I'm glad I fully understood all your logic and code. You explain all super clearly. Did you study something related to programming?
    I think the magic is on how to write the code from scratch. Definetely getting there in a few years...
    Anyways, thank you!!

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

      Glad you enjoyed. My academic background is in math and molecular biology

  • @GurwinderSingh-ol2ku
    @GurwinderSingh-ol2ku 2 роки тому +2

    Thanks for sharing code as well. Good for practice after understand. Again so nice of you with my special thanks🙏🙏

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

    Clear and perfect explanation...thank you dear....

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

    Dear your lecture is really really Excellent Thanks for good information in a Good Way

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

    hello, thanks for this great video! I don't know if you're still looking at the comments but need an answer for my question. When i run gathering data code line it really takes long to gather BTC and ETH data. I don't even put LTC. Just wondering if it's about my internet connection or something else about API maybe. Do you have any answer?

  • @mohammedberrezoug8019
    @mohammedberrezoug8019 2 роки тому +1

    Congratulation, very nice job, keep going on.

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

    very good beginning for this kind of work! keep going please :)

  • @davidbarrow6078
    @davidbarrow6078 2 роки тому +2

    Definitely, well explained, and excellent content thanks.

  • @codingtraining0102
    @codingtraining0102 2 роки тому +1

    Man I wanna see your channel growing Please Keep me Update

  • @yoecon
    @yoecon 2 роки тому +1

    Clearly explained! Please keep up a good work.

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

      Trading bots are mostly scams... but there are exceptions. You just need a lot a patience to backtest and run many bots, discard the ones that are scams and keep playing with the ones that are good. EDIT: since so many of you ask, yes I use Galileo FX.. .

  • @royw4008
    @royw4008 2 роки тому +1

    man, you are a champion, thanks heaps!!!

  • @jeppestergaardmarquardt9297
    @jeppestergaardmarquardt9297 2 роки тому +1

    beautifull presentation!

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

    klines = client.get_historrical_klines won't run.. the same parameters as you and I correctly imported everything from previous steps. up until i run the code after line 18.. what may be the issue ?

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

      there's a typo on "historical". can that be it? did you solve it?

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

      @@antiporfavor no its not. the same code works on a buddies computer but it gives an error on mine. not sure

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

      @@ayuktambe2754 I see. In that case, maybe you can check the code in Github, there's a link below the video, then compare the code line by line :) I'm sure that will help find the error

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

    Very nice video!
    Please keep on it!

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

    Thanks a lot for this useful information! I ran into a problem. I pip installed everything from the command prompt of a virtual environment I created for the project, and ran jupyter notebook from this same prompt. When I tried "from binance.client import Client" It prompted an error stating ModuleNotFoundError: No module named 'binance'. pip install python-binance from the command prompt directly fixed this... Why is my notebook not looking for modules inside the venv?

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

      It’s possible you have not installed Jupyter / ipython inside your venv, though I can’t say for sure without knowing the specifics of your situation. Stackoverflow + trial and error is my go to toolkit for these types of issues :)

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

    very useful. thank you

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

    Showing your secret key on video is never a good idea, it would allow people with malicious intent to connect to your account using the api.

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

    Hi, I can't get pas this error. Kindly assist. Thank you.
    Input In [16]
    klines = client.get_historical_klines(symbol = f'{coin}USDT', interval = client.KLINE_INTERVAL_1MINUTE, start_str)
    ^
    SyntaxError: positional argument follows keyword argument