Algorithmic Trading Using Python - Full Course

Поділитися
Вставка
  • Опубліковано 28 тра 2024
  • Learn how to perform algorithmic trading using Python in this complete course. Algorithmic trading means using computers to make investment decisions. Computer algorithms can make trades at a speed and frequency that is not possible by a human.
    After learning the basics of algorithmic trading, you will learn how to build three algorithmic trading projects.
    💻 Code: github.com/nickmccullum/algor...
    ✏️ Course developed by Nick McCullum. Learn more about Nick here: nickmccullum.com/
    ⭐️ Course Contents ⭐️
    ⌨️ (0:00:00) Algorithmic Trading Fundamentals & API Basics
    ⌨️ (0:17:20) Building An Equal-Weight S&P 500 Index Fund
    ⌨️ (1:38:44) Building A Quantitative Momentum Investing Strategy
    ⌨️ (2:54:02) Building A Quantitative Value Investing Strategy
    Note that this course is meant for educational purposes only. The data and information presented in this video is not investment advice. One benefit of this course is that you get access to unlimited scrambled test data (rather than live production data), so that you can experiment as much as you want without risking any money or paying any fees.
    This course is original content created by freeCodeCamp. This content was created using data and a grant provided by IEX Cloud. You can learn more about IEX Cloud here: iexcloud.io/
    Any opinions or assertions contained herein do not represent the opinions or beliefs of IEX Cloud, its third-party data providers, or any of its affiliates or employees.

КОМЕНТАРІ • 2,2 тис.

  • @XenonFH
    @XenonFH 3 роки тому +182

    I like how the errors were made without editing them out from the clip. Thanks for including all those in.

  • @BookOfMorman
    @BookOfMorman 3 роки тому +1679

    Sir, you clearly explained both financial and coding keywords better than my professors did in 4 years of schooling. You're a great teacher!!

    • @nameno480
      @nameno480 3 роки тому +4

      So ageee!!!!

    • @AlbyTheMovieCreator
      @AlbyTheMovieCreator 3 роки тому +134

      This is the most common comment you could ever read on web courses. I’m sure your teacher explained well, you were just bored and didn’t pay attention. Here you have 4 hours for everything you need to know and you can stop and start whenever you want. It’s easier. But don’t discredit other people because you have not been able to keep up with them.

    • @Retsjo
      @Retsjo 3 роки тому +10

      @@AlbyTheMovieCreator the school system is just fcked and you know it

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

      I wonder why almost everyone feels the same about the schools.they kepp u 4 years in a box and u act like a piggy bank to them.it is realy sad .I am already in that box.this guy deserves a ton of money not my teachers.

    • @SwIsH189
      @SwIsH189 2 роки тому +21

      Everything covered in this video is extremely basic. If you didn't understand it in 4 years of college, that is 100% on you.

  • @jairusknight5389
    @jairusknight5389 3 роки тому +58

    I don't comment often but this guy is an amazing teacher. He explained everything in such good detail. It helped me as I need a deep understanding of a topic to grasp it completely. Keep up the great work.

  • @ferbholstead6950
    @ferbholstead6950 3 роки тому +31

    I LOVE how you go through your own process of debugging. It really helps me.

  • @MrFlytoskyyy2
    @MrFlytoskyyy2 2 роки тому +178

    50min in and am already in love with the style of teaching. Errors are left in the vid as well as the logical process of debugging them, everything he mentions are backed up by examples. Superb content

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

      where did he has shown how to install dependencies and cloning plz help

  • @cpark4567
    @cpark4567 3 роки тому +61

    Still watching and learning the topics, so far so good, thanks a lot for generous offering this great course and I look forward to seeing this extended topic with advanced techniques and link to specific brokers' API like IB, Futu, etc. Thanks again for your great teaching!!

  • @Avman20
    @Avman20 3 роки тому +30

    Excellent course, NIck!! I enjoyed very much the "real life" approach that included the footage of tracking down bugs. Thanks for not editing that out!

  • @primaire7
    @primaire7 2 роки тому +9

    Not only application specific, he goes through very comprehensive instruction on Python. Huge kudo!

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

    Thank you that you didn't edit video, these debugging/looking for error processes actually make things more clear. And teach how to deal with such cases.
    And thank you for this video at all, it's great!

  • @alexbordei3951
    @alexbordei3951 3 роки тому +92

    thank you so much for this course!!! I started my coding journey with Free Code Camp, I now work full time as a developer. This topic is on my to do list!!!

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

      Which road map did you take for fulltime job?

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

      Cap af

  • @javierortizmir7873
    @javierortizmir7873 2 роки тому +16

    to whom it can be of use: if you're stuck because of a KeyError 'DISCA', that is because the original stock list has had some change. You can solve it by using a try/except block when doing the the iteration for the final_dataframe = final_datafrme.append(.....) . Just put all of that inside the try block, and then do an except KeyError, and handle the eroor

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

      haven't used a try/except before, can you please elaborate on how to use the except? I have the same issue
      Edit: I just put everything in the try block like you said and put except KeyError: break, is this what you did?

  • @sachinpondi8718
    @sachinpondi8718 2 роки тому +20

    Excellent course for someone new to Algo Trading. It’s precise and well designed course. I would like to see something more along lines of simulating real time strategies like VWAP, TWAP. This one is more of pre-trade analytics. Nonetheless I liked it and strongly suggest to anyone new to Algo trading space!

  • @SetVet
    @SetVet 3 роки тому +42

    Great course. Thank you for all the work you put in and your thorough explanation of how it all works together while coding. I haven't been coding python for more than a year and this was a great refresher course into data science and api use

    • @akashkumarsingh8215
      @akashkumarsingh8215 2 роки тому +6

      where did he has shown how to install dependencies and cloning plz help

  • @BT-te9vx
    @BT-te9vx 3 роки тому +9

    this was awesome and though I've just finished the first part only, I cannot thank you enough for how well you explained each portion of the project. Now only, if I could build up from here!

  • @KANGAR1982
    @KANGAR1982 3 роки тому +5

    great video, what I really liked is that you showed in a super clear way how to use the requests library in Python and now I do not need to depend on 3rd party wrappers that might not have all functionality! thanks!

  • @kostas6915
    @kostas6915 2 роки тому +6

    Congrats Nick McCullum for creating this. Good that the debugging parts are left in, so we can understand in more details how various parts work.

  • @bitecast
    @bitecast 3 роки тому +81

    29:41 Thanks for showing debugging when hitting errors. That adds a lot to real world training!

    • @senior5904
      @senior5904 3 роки тому +7

      that is not debugging lmao, it's like turning your phone off and on

    • @axea4554
      @axea4554 3 роки тому +3

      Reloadi g this thing is like off and on but how do you know if you should restart it? This is debugging

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

      Its still showing error importing from secrets.py file. Did nothing for me

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

      hey guys, even after restarting kernel, I am still getting same error for importing secrets, any solution?

    • @user-cm7di5nj1v
      @user-cm7di5nj1v 2 місяці тому

      @@koushikdey7778 same here please do suggest

  • @lukenothere1252
    @lukenothere1252 3 роки тому +58

    Oh my god, again, you are doing god work. From dynamic programming now this.

  • @kccchiu
    @kccchiu 2 роки тому +5

    In 58:05 for anyone don't want to use yield, you can use list concatenation for both symbol_groups and symbol_strings
    symbol_groups = [list(stocks.Ticker)[x:x+100] for x in range(0, len(list(stocks.Ticker)), 100)]
    symbol_strings = [(',').join(i) for i in symbol_groups]

    • @Peter-lv5sl
      @Peter-lv5sl 2 роки тому

      do u have any tips on how to learn and improve my ability in this area after I complete this video? Tryna prepare myself for work in this field was wondering if you have tips!

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

    Thanks Nick for the complete and detailed course for beginner. Really appreciate.

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

    Thank you very much for this course!!! You've done a wonderful job!

  • @wiskasIO
    @wiskasIO 3 роки тому +45

    So far I have only used my python knowledge to program basic games, automation widgets and a few data scrappers but this... My head just exploded with curiosity!🤯 Thank you so much!

    • @Mmmkay..
      @Mmmkay.. 2 роки тому +13

      @Arid Sohan *paid

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

      @@Mmmkay.. I don’t think that was a typo

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

      @Arid Sohan tf

    • @ultranationalistkillordie1748
      @ultranationalistkillordie1748 10 місяців тому

      ya maybe program to teach a bot to give head , we can control the speed

  • @kongseeyang959
    @kongseeyang959 3 роки тому +4

    Thank you for this amazing tutorial! I wish there was more of this information 4-5 years ago.

  • @jonathansgarden9128
    @jonathansgarden9128 3 роки тому +31

    I'm 12 minutes into this course and I already feel like I'm getting a firm grasp of this stuff. Thank you so much

    • @panhuragan4388
      @panhuragan4388 3 роки тому +27

      Stop picking low hanging apples. Go deeper into the subject.

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

      @@panhuragan4388 😂😂

  • @ApakukiNayacakalou
    @ApakukiNayacakalou 3 роки тому +6

    freakin hell! how good is this! Lockdown boredom solved. Thanks!

  • @quincylarsonmusic
    @quincylarsonmusic 3 роки тому +238

    Note that there are a few pops in Nick's sound at the beginning, but these go away completely once he starts building projects at the 17:20 mark.

    • @jpmohan96
      @jpmohan96 3 роки тому +5

      great, was worried it was my system 😅

    • @blockdisney3676
      @blockdisney3676 3 роки тому +8

      Hi, I am still a beginner, where do we go to install the dependencies... the video skips that part.. thanks

    • @contantino_mm
      @contantino_mm 3 роки тому +7

      @@blockdisney3676 I think you can start with this anaconda
      ua-cam.com/video/YJC6ldI3hWk/v-deo.html

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

      @@contantino_mm Thank you so much!

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

      @@contantino_mm And where to start without this anaconda?

  • @adithyaravindra5596
    @adithyaravindra5596 Рік тому +7

    finished the entire thing in one sitting. Loved it! its an amazing course if you are starting out algo trading!

  • @richardshi1896
    @richardshi1896 2 роки тому +12

    This is a great course. I learned so much from it. One suggestion: the robust value trading program should exclude the negative PE Ratio stocks first before sorting for the low 50 stocks.

  • @fbitti
    @fbitti 3 роки тому +5

    I like how you face problems and fix them, thanks for not cutting those parts out of the final video

  • @_The_Black_Prince_
    @_The_Black_Prince_ 3 роки тому +8

    @2:09:00 you can use the code below to ensure you have a valid number by looping until the user has inputted a numerical value. Thanks for the great video!
    while True:
    try:
    portfolio_size = float(input("Enter the size of your portfolio: $"))
    break
    except ValueError:
    print("Please enter a valid numerical value in $")

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

      Hey thanks bro you saved the day :)

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

      Bro, which software is used to run this script?

    • @csanadtemesvari9251
      @csanadtemesvari9251 7 місяців тому

      @@ameeraarif Jupyter Notebook provided by IPython, pip library, numpy, pandas, xlsxwriter

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

    This is very great video filled with explanation and experience. Watching it has been a pleasure. Thank you for taking the time and having a student mentality you are appreciated.

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

    This guy is awesome, the best thing I liked that he was debugging things in video. Debugging is actually most important part that takes time to learn.

  • @alexandersierra7676
    @alexandersierra7676 3 роки тому +4

    Thank you so much for this tutorial! It has been a great distraction from my regular school work. Keep em coming! :)

  • @VERY_TALL_MAN
    @VERY_TALL_MAN 3 роки тому +41

    About to take a college course on this topic next semester, so glad this exists!

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

      which course and college? could you please refer to a link?

    • @gomes8335
      @gomes8335 3 роки тому +8

      Waste of time.

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

      @@irvin1241 Im sure most colleges that have a business school within them will have a course or two on python or R that’s centered around finance. The course Im taking next semester is a minicourse to fill out my credit requirement so it’s probably not as in depth as youre looking for. The best place to start would probably be just googling the “python finance college course” and seeing what colleges offer that you’d be willing to pay for. Of course, if youre good at learning things on your own I cant recommend Kaggle enough. Its free and has alot of stuff that you can pull from. Good luck!

    • @VERY_TALL_MAN
      @VERY_TALL_MAN 3 роки тому +4

      @@gomes8335 I dont think its a waste of time, as Im not looking to be a full time programmer. I pay for 18 credits per semester, and using a few of them to focus on my interests outside of my major seems pretty worthwhile to me. I’m not a good self-learner like some people and my background in coding isnt that strong. I think it’ll be a cool way to combine a minor interest with my other education and see if I can really take it anywhere. As always, the internet is truely the best teacher when it comes to programming, but not everyone is suited to that path :)

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

      @@VERY_TALL_MAN Good on you. I wish you luck :)

  • @anangelsdiaries
    @anangelsdiaries Місяць тому +1

    There were a few questions I had while watching (I am a noob so sorry if any of them sound dumb):
    - How do you deploy that? I imagine you wouldn't want it running in Jupyter Notebook.
    - Is the accuracy-loss of floats safe to ignore?
    - While the concept of high-quality vs low-quality momentum makes sense, why is momentum a good metric? Isn't it likely that since you rely on data from a year ago, your model identify stocks that have already seen their growth and won't grow more? (Like making you buy at high, instead of low)
    - Would it be sensible instead of calculating a score to sort all the columns based on different return_percentiles?
    - Also, when do you know to sell? I know the premise was that we have a team of traders to whom we send our excel files, but while they'd be able to know how many stocks to buy based on our position and the filtering we did, how do they know when to sell?

  • @slcrooks
    @slcrooks 3 роки тому +3

    Awesome course. Thank you, hugely helpful!

  • @kenjohnson512
    @kenjohnson512 3 роки тому +35

    Literally just started building a trading bot, timing couldn't have been any better, thanks!

    • @meatbased77
      @meatbased77 3 роки тому +5

      UA-cams algorithm is your friend.

    • @davidyusaku
      @davidyusaku 3 роки тому +7

      You should thank the cookies for that

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

      I’m also curious how your trading is going

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

      I worked on it for a full month using the Interactive Brokers API in python and watched a bunch of videos focusing on day trading indicators etc to try and code the bot. In the end, I hadn't accounted for the commission the brokerages take (about $5 per trade which adds up especially if you're not trading with a lot) and this eventually started discouraging me a little. If anyone does run into the same problem, I would look into leverage which is riskier but easier to overcome tis problem. Risk analysis is also crucial (setting stop losses, take profits).

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

      @@kenjohnson512 so how is it going bigboy?

  • @q360404838
    @q360404838 3 роки тому +48

    This is awesome! I followed every part of the course and finished all three projects successfully. Thank you so much for providing great quality content!

    • @RohitSingh-yo2yl
      @RohitSingh-yo2yl 3 роки тому +1

      ah fellow Asian..

    • @adamfattal9602
      @adamfattal9602 3 роки тому +3

      How do you feel like this course has affected your knowledge of algo-trading a month later? Have you been deploying any of the strategies used?

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

      How where your results?

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

      guys it is a simplified approach that allows to learn to program in python in a playful way. with this course you can try to make the analysis more relevant by integrating other indicators idk

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

      where did he has shown how to install dependencies and cloning plz help

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

    Your presentation of this information is fantastic and easy to pay attention to, thank you you're awesome.

  • @CalebDiT
    @CalebDiT 3 роки тому +148

    Rather than counting zeros, an easier way to input large numbers with many zeros is to use e-notation:
    3e3 (which equals 3 * 10^3, or 3000)
    10e6 (equals 10 * 10^6, or 10000000)
    8e100 (equals 8 * 10^100, or 80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000)

    • @joaoc7801
      @joaoc7801 2 роки тому +10

      Also an easy way to input small numbers, e.g. 3e-3

    • @Zaenil
      @Zaenil Рік тому +2

      Are you trying to input my bank accout balance?

    • @CalebDiT
      @CalebDiT Рік тому +2

      @@Zaenil Yes, for a withdrawal, but all I keep getting from your bank are 🤣emojis. What's up with that?

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

    Just completed this amazing journey
    Thanks for all the efforts!

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

    Best tutorial. New in python and Stock is foreign to me. I actually can have stock conversation, now. Thanks

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

    Your teaching style really touched me. It's so much connected.

  • @jasonheo2333
    @jasonheo2333 3 роки тому +12

    Loving the materials!
    I might add that Pandas and Numpy actually has builtin methods better suited than math and scipy libraries for some operations.
    For example, numpy.floor() can be used instead of math.floor()
    final_dataframe['Number of Shares to Buy'] = np.floor(position_size/final_dataframe['Price'])
    or df.rank() can be used instead of scipy.stats.percentileofscore()
    for time_period in time_periods:
    hqm_dataframe[f'{time_period} Return Percentile'] = hqm_dataframe[f'{time_period} Price Return'].rank(method='max', pct=True).mul(100)

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

      Oh, man have a nice day, u made mine easier

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

      thanks for .rank

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

      @@adiletdaniyarov5737 HQM Scores from momentum strategy,
      momentum_percentiles = [f'{time_period} Return Percentile' for time_period in time_periods]
      hqm_dataframe['HQM Score'] = hqm_dataframe[momentum_percentiles].mean(axis=1)
      RV Score from valuations:
      rv_dataframe['RV Score'] = rv_dataframe[[i for i in metrics.values()]].mean(axis=1)
      :)

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

      That's awesome, thanks you

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

      Bro thank you so much I was getting float errors.

  • @lucasinoi2145
    @lucasinoi2145 3 роки тому +50

    Thank you for this video but I think everybody is feeling the absence of the second section. Any updates would be greatly appreciated.

  • @nurbolkapakov2282
    @nurbolkapakov2282 Рік тому +1

    Unbelievable! Yall doing sucha great! Thank you very much! God bless yah family!
    Great respect from Kazakhstan!

  • @andreyshamardin4740
    @andreyshamardin4740 2 роки тому +8

    52:39 If you stuck with appending series to a dataframe like me, this method(.append) returns a new object, so if you want to see the result, you should assign final_dataframe to new variable and then print it.
    new_dataframe = final_dataframe.append(pd.Series(
    [
    symbol,
    price,
    market_cap,
    'N/A'
    ],
    index=my_columns
    ),
    ignore_index=True
    )
    print(new_dataframe.to_markdown())

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

      TY! assigning the new variable got it to print and installing tabulate

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

      Perfect! Exactly what I got stuck on.

  • @realMrLupu
    @realMrLupu Рік тому +4

    Hello, for people getting to the Key Error for the stocks, the solve is to delete the 4 stocks that have been delisted from the S&P 500:
    code example:
    stocks = stocks[~stocks['Ticker'].isin(['DISCA', 'HFC','VIAC','WLTW'])]

  • @alex_suero
    @alex_suero Рік тому +3

    Amazing video! Thank you so much for sharing this! Still going through it, but there's an observation I need to make for any beginners that might stumble upon this video:
    To create a new column with values based on another column(s), using a for loop to iterate through rows and make calculations (as shown in 2:31:11) will be EXTREMELY inefficient on larger datasets. It is better to use Pandas' `apply()` method paired with a `lambda` function, as follows:
    ```
    # create list with time periods
    time_period = ['One-Year', 'Six-Month', 'Three-Month', 'One-Month']
    # create new fields (or update existing ones) based on previous list
    # and calculate percentile based on Price Return
    for i in time_period:
    change_col = f'{i} Price Return'
    percentile_col = f'{i} Return Percentile'
    hqm_dataframe[percentile_col] = hqm_dataframe.apply(
    lambda x: score(hqm_dataframe[change_col], x[change_col]), axis=1)
    ```
    Same method can be applied to calculate HQM Score using Pandas' `mean()` method:
    ```
    hqm_dataframe['HQM Score'] = hqm_dataframe.apply(
    lambda x:
    pd.Series([x[f'{time_period[0]} Return Percentile'], x[f'{time_period[1]} Return Percentile'],
    x[f'{time_period[2]} Return Percentile'], x[f'{time_period[3]} Return Percentile']
    ]).mean(), axis=1)
    ```

    • @Jon-bk2bw
      @Jon-bk2bw Рік тому

      Hey Alex! just checking, are you still able to use it? Did they deprecate the sandbox api?

    • @alex_suero
      @alex_suero Рік тому +1

      @@Jon-bk2bw Not sure if it's working at the moment, but it did a few weeks ago when I tested it! If anything, you can use Yahoo Finance API instead

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

      @@Jon-bk2bw I had the same question and I think they did on 21st August 2021 but I'm not sure how come users were able to work with it until a couple of months ago.

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

    The fun thing about pandas, is that you can work with whole columns without loops, e.g:
    final_dataframe['Number of Shares to Buy'] = final_dataframe.apply(
    lambda row: math.floor(position_size / row.Price), axis=1)

  • @danh9002
    @danh9002 10 місяців тому

    This was amazing! Thank you so much for this video!

  • @karolmileszko
    @karolmileszko Рік тому +10

    As sandbox is discontinued I'm using the public key provided by IEX within the test period. I'm still getting 403 error. Any ideas?

  • @maalokam
    @maalokam 2 роки тому +6

    I am really enjoying learning these techniques and am impressed with your style. Thank you for encouraging others to learn!
    I'm running into an error in the momentum calculations around percentileofscore implementation, around 2h 30m mark in your video. I am executing the following:
    for row in hqm_dataframe.index:
    for time_period in time_periods:
    change_col = f'{time_period} Price Return'
    percentile_col = f'{time_period} Return Percentile'
    hqm_dataframe.loc[row, percentile_col] = score(hqm_dataframe[change_col], hqm_dataframe.loc[row, change_col])
    and get the error:
    TypeError: '

    • @maalokam
      @maalokam 2 роки тому +8

      I found a solution to this question in one of the comments. Another user had the same issue and they resolved it by adding this line before the for loops I mentioned:
      hqm_dataframe.dropna(inplace=True)
      This drops any rows/columns that return N/A as part of f''{time_period} Price Return' column in the hqm_dataframe

  • @dan.franco
    @dan.franco 2 місяці тому

    Incredible course. Thank you very much!

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

    Thanks for the training. I learned alot!

  • @rafaelmalate7938
    @rafaelmalate7938 3 роки тому +3

    Great thing I have this on my notif

  • @esn832
    @esn832 3 роки тому +3

    Awesome video, thanks very much! For the next time, please put the video of the educator not on top of the slides or if in a corner where it does not superimpose on the content.

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

    This video is insanely helpful. Thank you so much.

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

    Excellent explained and walking through learning session! Great thanks and hope there will be more sessions from you!

  • @ahmedahmed-xi6yh
    @ahmedahmed-xi6yh 2 роки тому +3

    Thanks for the video Nick!
    If i wanted to launch a career in trading along with my coding skills, which videos do you suggest me to watch in order to have a solid background on the subject
    thanks in advance

  • @georgekrax
    @georgekrax 3 роки тому +30

    BONUS: In this course a free addictive Python course for beginners / intermediate programmers is included, with clear clarifications about everything you may need ♥

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

    Just completed the course. Thank you!

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

    awesome!Fix some problems:Before Calculating Momentum Percentiles,Execute the statement first to clean up invalid data.hqm_dataframe.fillna(value=0, inplace=True)

  • @RaffiSosikian
    @RaffiSosikian 9 місяців тому +5

    A great detailed starter course to learn some Python. As a licensed commodity trading advisor (and a software engineer), I would never advise someone to trade this though.

  • @SirDeeTrey
    @SirDeeTrey 3 роки тому +13

    Shouldn't stocks with negative P/E and P/B ratio be removed when you are calculating the RV Score? I see that it was done when you take the simpler approach and only use the P/E ratio. Thanks in advance :)

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

    Just as a safety precaution since you never want to trust someone to know what to do you can use a while loop for the input validation:
    invalid_input = True
    while invalid_input:
    try:
    portfolio_size = input("Enter the value of our portfolio:")
    val = float(portfolio_size)
    print(val)
    invalid_input = False
    except Exception as exception:
    print("You must enter an integer")

  • @vivekrathore6817
    @vivekrathore6817 10 місяців тому +9

    Sandbox testing has been deprecated. Is there any alternate free data api that we can use in this project?

  • @AliAhmed-ox1gy
    @AliAhmed-ox1gy 3 роки тому +12

    I knew free code camp would have a legit course on this.

  • @ztlf
    @ztlf Рік тому +1

    Just coming across this video now. Make sure, for the first project, you get an up to date list of all stocks found on the S&P 500. At this time there were 4 stocks that no longer are under the listed tickers with the provided csv file.

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

    Hey man thanks for this video. Really great work here.

  • @chaddsmith3354
    @chaddsmith3354 Рік тому +10

    It seems IEX has closed access to the sandbox mode unless you have an account which starts at $49/mth. (30 day free trial).

  • @ashwinsamuel7158
    @ashwinsamuel7158 Рік тому +3

    Great video! Was really helpful. Just 1 small comment/question:
    In the 3rd value investing project, you might have missed out filtering out the stocks with negative pe ratio/pb ratio/ ev_ebitda ratio / ev_gp ratio before calculating the percentile. The algo is currently rewarding such stocks with negative ratios which is incorrect, right?

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

    I'm very grateful for your video. I'm below a beginner, basically illiterate in computer knowledge, but you made it easy. Thank you, thank you!

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

      where did he has shown how to install dependencies and cloning plz help

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

    Excellent beginner's course. Thanks so much for the effort!

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

      Bro u intrested to learn more about algo trading?

  • @Freddyyyy266
    @Freddyyyy266 2 роки тому +21

    Just stumbled on this. Thank goodness I got took my trading seriously. Getting into the market surely led to many open doors for me as I've gone to make quadruple of what I put in.

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

      Hello larry. How are you able to make profits? Newbie here

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

      @@Diallo872 For me, I lost money repeatedly because I didn’t know how to go about it till I came across recommendations of Levi Clemans, a seasoned trade analyst and reached out. It’s been a great journey ever since. You can also get across

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

      Levi clemans(a)Gmai
      Lcom...Is he taking commissions for trades? Yes, I’m I still making money in the process? Hell yes!

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

      @@Freddyyyy266 thank you Larry. I’ll write him immediately! Blessings!

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

      I have not written this sort of comment before but I feel compelled to. Just wanted to let you know that you’re doing a great job Clemans. You have made a difference in my understanding of the market.

  • @victorbmadslund
    @victorbmadslund 6 місяців тому

    I’m doing the cs50 Python course atm, but will follow this roadmap when I’m done… thanks !

  • @emanik2
    @emanik2 Рік тому +1

    Furthermore, you could try to
    1) follow the approach of Ang (2009) and exclude firms with the lowest 5% of market valuation (and not only prices

  • @nicolassalascorrea
    @nicolassalascorrea 3 роки тому +11

    i cant find this Needd Heeellppp!!!
    Section 2: Course Configuration & API Basics
    How to Install Python
    Cloning The Repository & Installing Our Dependencies
    Jupyter Notebook Basics
    The Basics of API Requests

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

      @deqiang tian Thanks and it worked! My steps are a little different 1) I downloaded "Anaconda" and 2) In the Anaconda Prompt I type "pip install panda"
      "pip install numpy"
      "pip install jupyterlab".

  • @ashokprasant4137
    @ashokprasant4137 Рік тому +946

    I HAVE INCURRED SO MUCH LOSSES TRADING ON MY OWN...I TRADE WELL ON DEMO BUT I THINK THE REAL MARKET IS MANIPULATED... CAN ANYONE HELP ME OUT OR AT LEAST TELL ME WHAT I'M DOING WRONG ?

    • @ritacanas790
      @ritacanas790 Рік тому +2

      Same here, My portfolio has been going down the drain while I try trading,l just don't know what I do wrong

    • @pascalrobert5085
      @pascalrobert5085 Рік тому +4

      Trading with an expert is the best strategy for newbies and busy investors who have little or no time to monitor trade

    • @elenakrause134
      @elenakrause134 Рік тому +1

      I strongly advise you against self trading, it's really dangerous and had brought so many investors down, you need someone with the knowledge and strategies, someone dedicated to the crypto currency market business, and I will strongly recommend expert, Mrs Mary Callahan Erdoes

    • @alejandrosanchez8773
      @alejandrosanchez8773 Рік тому +2

      Wow I'm just shock you mentioned and recommended Expert Mrs Mary Callahan Erdoes ,I thought I'm the only trading with her

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

      @@alejandrosanchez8773 You don't need to be shock because I'm also a huge beneficiary of Expert Mrs Mary Callahan Erdoes

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

    This tutorial is freakin' awesome!!

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

    You can use a while loop with the input:
    def portfolio_size():
    global portfolio_size
    while True:
    try:
    portfolio_size = input('What is your portfolio size?')
    if isinstance(float(portfolio_size), float):
    break
    except ValueError:
    print('This is not a number')

  • @smitpatel9462
    @smitpatel9462 2 роки тому +11

    hi,
    can anyone please help me figure out where actually is a dependency section in this course?
    Thank you

  • @shayansh2821
    @shayansh2821 2 роки тому +10

    What I like about your tutorial is that one doesn’t miss out if they start with the third section.
    Also than you didn’t cut out the bugs and struggle helps people to understand that these stuff belong to a programmers life.
    Another positive point is that you try to clarify specific financial terms.
    Overall you did a great job here.
    One point of improvement is your face cam position on the screen.

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

      where did he has shown how to install dependencies and cloning plz help

  • @GeorgeFabian-wz1ry
    @GeorgeFabian-wz1ry 6 місяців тому

    One of the most challenging courses on flying helicopter, preflight. Checking some of these instruction will benefit you greatly. Former Airforce.

  • @hasantao
    @hasantao Рік тому +1

    Thank you very much for the videos. I wish you had covered the execution of a trade. That is an area that I often ran into a trouble. I hope we will have a series that cover execution and an actual end-to-end pipeline based on an actual exchage.

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

      @Afshin Zarechian I now primarily use tradingview or tradestation for writing my scripts and backtesting. They have a program called pinescript which is easy to learn. They both have built in backtesting module.

  • @brothermalcolm
    @brothermalcolm 2 роки тому +4

    Awesome tutorial, watched the whole thing through to the end. For the next video tutorial, do you want to show us how to write a trading bot that will automate day trading based on these algorithms?

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

      Bro u intrested to learn more about algo trading?

  • @huysamdua86
    @huysamdua86 8 місяців тому +4

    very nice, thx. the IEX cloud testing sandbox is deprecated but able to workaround using other data provider. e.g. yfinance works fine for me.

    • @tungno1613
      @tungno1613 19 днів тому

      Hi, can you walk me through the API part? How do use yfinance for this project?

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

    Amazing tutorial! Thanks so much

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

    You clicked on so many lightbulbs for me with this video. Thank you so much.

  • @Weckmuller
    @Weckmuller 3 роки тому +5

    Yeah, its very unfortunate and discouraging to those who are learning the fact that section 2 is missing from the actual video even thou it is mentioned on all the syllabus for this course that I came across. Several people on the comments are complaining about this and I mean... You could at least edit the video description with basic instructions or with a link to where we can find the missing part of the video. After all that is critical information for those who wants to follow along with your course. Thanks anyway

  • @rockykamen-rubio1600
    @rockykamen-rubio1600 3 роки тому +3

    Really liked the tutorial! There are a few places where you're working on code that's blocked by the video of your face. I could generally extrapolate from what you were saying, but wanted to let you know

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

    well explained I am very happy to see the content and way of teaching is superb. Thank u so much my friend.

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

    OMG. He talks so fast, but explains concepts so darn clearly..... 👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍

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

      playback 0.75 might help a bit

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

      @@omgitzcoola I love fast speakers:) just amazed by him.

  • @pencilkid1123
    @pencilkid1123 3 роки тому +34

    you know, Renaissance technologies is something I pass by on my way to almost anywhere and I never knew what they were until now. That's pretty cool

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

      they dnt use python

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

      @@pajeetsingh What do they use?

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

      @@ayansamal2440 A quick Google shows C++

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

      @@goober-ll1wx If you can place order 100 times a minute, it's still not illegal. They place 1000 times a min. It's not illegal. It's calculus of day trading, more like minute or even seconds trading.

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

      @@goober-ll1wx Well he worked for CIA. That should settle your doubt.

  • @abhishekmittal7213
    @abhishekmittal7213 3 роки тому +22

    at 2:28:12 While implementing the percentiles, I noticed that the data I am receiving has None type in it. So the scipy.stats module throws an error as it cant compare the None type instances. For now I am replacing it with 0. Just for people who face this error you can just add this right before you assign your return percentiles
    for row in hqm_dataframe.index:
    for time_period in time_periods:
    if hqm_dataframe.loc[row,f'{time_period} return'] == None:
    hqm_dataframe.loc[row,f'{time_period} return']=0

    • @fcoreas
      @fcoreas 2 роки тому +6

      I actually did a hqm_dataframe.dropna(inplace=True), as this values are from stocks that are probably not available anymore using the API

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

      Hey thans guys, you all saved the day :)

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

      @@fcoreas Thank You this fixed it for me

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

      @@fcoreas This worked perfect for me! thank you.

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

      @@fcoreas eyvallah francisco

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

    this was great, many thanks Nick

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

    Another way to skin the cat...
    You can put inputs in while loops such that the user is repeatedly queried for input until he gives it correctly (i.e. until he gives numeric input). For example:
    portfolio_size = ''
    while not isinstance(portfolio_size, float):
    portfolio_size = input('Enter the numeric value of your portfolio')
    try:
    portfolio_size = float(portfolio_size)
    except ValueError:
    print('Entry must be numeric')
    I go this route because assertions, try-except blocks, etc. generally halt execution on errors, requiring you to run the code again. This keeps it going.

  • @mycul_
    @mycul_ 3 роки тому +28

    'Citadel'- Cue in Fortunate Son and flashbacks of Vietnam with my WSB brothers.

  • @satvikjha8932
    @satvikjha8932 3 роки тому +8

    And the fact that this is free re establishes my belief in humanity

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

    Very very useful. Thank you so much for sharing this video.