Automated Trading in Python | Pt. 2

Поделиться
HTML-код
  • Опубликовано: 21 окт 2024

Комментарии • 24

  • @Jxmiecole
    @Jxmiecole 3 года назад +3

    These are the people that deserve a spot in heaven XD

  • @KPSoundCo
    @KPSoundCo Год назад

    Awesome stuff man, I have a option bot I have tested through Option Alpha but want to code it my self - what video(s) should I start at? I have no programming experience but do use think or swim thanks man

  • @bramhoogesteger7678
    @bramhoogesteger7678 3 года назад

    Great Video! Is it also possible to run the bot just using a developers account with Ameritrade or do you have to open a full account? In the last case this is a little cumbersome just to test the script and learn

  • @1166NYC
    @1166NYC 3 года назад +1

    When I run the files(after a successful pip install of everything) I encounter the following, ModuleNotFoundError: No module named 'pyrobot.forms'
    Any idea why I am getting this error in Visual Studio Code?
    I have been a subscriber to your channel for several months. Thank you for making the content that you do :)

    • @SigmaCoding
      @SigmaCoding  3 года назад

      There is no module called 'pyrobot.forms', that's why you can't import it. Are you sure you installed the correct library?

    • @1166NYC
      @1166NYC 3 года назад +1

      Sigma Coding That’s strange. I installed everything the same way you did in the video, with the “ -e”

    • @SigmaCoding
      @SigmaCoding  3 года назад +1

      You downloaded from this repo, right?
      github.com/areed1192/python-trading-robot

    • @1166NYC
      @1166NYC 3 года назад +1

      Sigma Coding Yes, I went through your repo specifically. Nothing else outside of the video series installs you walked us through

    • @SigmaCoding
      @SigmaCoding  3 года назад +1

      @@1166NYC Well that's very odd. Could you email the code you have? Coding.Sigma@gmail.com

  • @davisklein9489
    @davisklein9489 3 года назад

    I’m already stuck on the config folder, I replaced the template with my info but when I run in terminal like you show in the video I get a syntax error on line 1. Not sure what this means

  • @kendricktan9004
    @kendricktan9004 3 года назад +1

    Hey, I don't know if this was covered somewhere, but if I want to use the Interactive Brokers API instead of the TD Ameritrade API, is there a video where you cover how you can modify your code to make your bot compatible with IBKR?

    • @SigmaCoding
      @SigmaCoding  3 года назад

      I don't actually cover that in any of my videos, it would require a significant amount of change to the code to make it compatible with both TD and IB. Not ruling it out in the future, but I just would have to sit down and dedicate the time to reworking the code.

    • @Jxmiecole
      @Jxmiecole 3 года назад

      This is my problem, I cant use the API as I am not a us citizen or situated in the us :(

    • @karunkrishna1111
      @karunkrishna1111 3 года назад

      @@SigmaCoding IB is supported in Canada and many major Countries. Most API brokers lik TD Ameritrade is only supported in USA, so you maybe able to help more ppl. Though IB Broker is not a clean API; I would recommend using Ib_sync to connect

  • @sadocommando2434
    @sadocommando2434 3 года назад

    Each time I run strategy_1.py, it asks me to authenticate. How come it doesn't in the vid? Is there some code that is missing from git?

  • @dominikschneider4388
    @dominikschneider4388 3 года назад +1

    Hey, where can I find my Account number, which is required in the config file?

    • @SigmaCoding
      @SigmaCoding  3 года назад

      It's just your TD Ameritrade Account number. You should be able to see it when you login to TD Ameritrade online.

  • @philipfiguerres7737
    @philipfiguerres7737 2 года назад

    Tried to install using "pip install -e." It would not install dependencies at stated in 7:15 of the video. Please advise what I can do to resolve the issue. thanks in advance,

    • @aspect_ow
      @aspect_ow Год назад

      i know its been 10 months, but did you ever figure it out? i cannot get it i have the same issue.

    • @commentedited232
      @commentedited232 3 месяца назад

      Did anyone figure this out ?

  • @gin-yuitsang4149
    @gin-yuitsang4149 3 года назад +1

    Hello, thanks for your informational video and your generosity to share your library for free.
    Would you mind telling me where I can find my JSON_PATH ? Is it the access_code from the authentication?

    • @SigmaCoding
      @SigmaCoding  3 года назад +1

      That's the configuration file path. It's something you need to specify in your code.

    • @gin-yuitsang4149
      @gin-yuitsang4149 3 года назад

      ​@@SigmaCoding Thanks for your quick response. ! I ran into another problem of "No module named 'td'" when I trying to run your code. Would you mind sharing with me how to solve it. I also downloaded your td-ameritrade-python-api library, but it also shows "No module named 'td'" error message.
      Thanks for your help !
      ------------------------------
      update:
      I got it working. I need to change the interpreter of VSC to my conda environment.