Algorithmic Trading Using Python - Full Course

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

Комментарии • 2,2 тыс.

  • @XenonFH
    @XenonFH 4 года назад +256

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

  • @BookOfMorman
    @BookOfMorman 4 года назад +1779

    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 года назад +6

      So ageee!!!!

    • @AlbyTheMovieCreator
      @AlbyTheMovieCreator 3 года назад +139

      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 года назад +12

      @@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 3 года назад +22

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

  • @javierortizmir7873
    @javierortizmir7873 2 года назад +34

    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 Год назад +1

      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?

  • @MrFlytoskyyy2
    @MrFlytoskyyy2 3 года назад +199

    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 3 года назад +2

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

  • @_The_Black_Prince_
    @_The_Black_Prince_ 3 года назад +9

    @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 3 года назад

      Hey thanks bro you saved the day :)

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

      Bro, which software is used to run this script?

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

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

  • @alexbordei3951
    @alexbordei3951 4 года назад +102

    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 3 года назад +5

      Cap af

  • @jairusknight5389
    @jairusknight5389 3 года назад +71

    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.

  • @dinam1ka
    @dinam1ka 2 года назад +7

    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!

  • @adithyaravindra5596
    @adithyaravindra5596 2 года назад +11

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

  • @CalebDiT
    @CalebDiT 3 года назад +154

    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 года назад +2

      Are you trying to input my bank accout balance?

    • @CalebDiT
      @CalebDiT 2 года назад +3

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

  • @ferbholstead6950
    @ferbholstead6950 4 года назад +38

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

  • @alex_suero
    @alex_suero 2 года назад +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 2 года назад

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

    • @alex_suero
      @alex_suero 2 года назад +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.

  • @bitecast
    @bitecast 4 года назад +83

    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 2 года назад

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

    • @MaheshK-z7p
      @MaheshK-z7p 8 месяцев назад

      @@koushikdey7778 same here please do suggest

  • @emanik2
    @emanik2 2 года назад +2

    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

  • @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")

  • @kenjohnson512
    @kenjohnson512 4 года назад +37

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

    • @meatbased77
      @meatbased77 3 года назад +5

      RUclipss algorithm is your friend.

    • @davidyusaku
      @davidyusaku 3 года назад +7

      You should thank the cookies for that

    • @gabriellarossi
      @gabriellarossi 3 года назад +2

      I’m also curious how your trading is going

    • @kenjohnson512
      @kenjohnson512 3 года назад +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 3 года назад

      @@kenjohnson512 so how is it going bigboy?

  • @jasonheo2333
    @jasonheo2333 4 года назад +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 4 года назад +1

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

    • @adiletdaniyarov5737
      @adiletdaniyarov5737 4 года назад +1

      thanks for .rank

    • @jasonheo2333
      @jasonheo2333 4 года назад +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.

  • @kccchiu
    @kccchiu 3 года назад +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!

  • @anangelsdiaries
    @anangelsdiaries 7 месяцев назад +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?

  • @bongkem2723
    @bongkem2723 11 дней назад

    this is very useful, you show what needs to be done, how to do it, how to fix errors, what things mean in real life situation. great job and thank you !!!

  • @wiskasIO
    @wiskasIO 3 года назад +46

    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.. 3 года назад +13

      @Arid Sohan *paid

    • @twas3658
      @twas3658 2 года назад +3

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

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

      @Arid Sohan tf

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

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

  • @sachinpondi8718
    @sachinpondi8718 2 года назад +21

    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!

  • @andreyshamardin4740
    @andreyshamardin4740 3 года назад +9

    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 3 года назад

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

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

      Perfect! Exactly what I got stuck on.

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

    Easy way to add a cost column to your pandas df:
    final_dataframe = final_dataframe.apply(lambda x: x['Stock Price'] * x['Number of Shares to Buy'], 1)
    *** don't forget the ',1', it specifies the axis :)

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

    I have a few tips for people that may be struggling with setup & other things:
    As an alternative to setting up & using a local Jupyter notebook, you can use a Google Colab Notebook (colab.research.google.com) with the following imports:
    import numpy as np
    import pandas as pd
    import requests
    import math
    !pip install xlsxwriter
    If any of you are confused about how to get secrets.py, click on the link & press 'Ctrl/Command + S' to save the file. Upload it into your Google Colab, go to the 'Runtime' menu tab, and click 'Restart & Run All'
    Note that if you use Google Colabs, you may have to re-upload the stocks csv & IEX token file after you leave the browser & come back.

  • @cpark4567
    @cpark4567 4 года назад +66

    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!!

  • @quincylarsonmusic
    @quincylarsonmusic 4 года назад +237

    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 4 года назад +5

      great, was worried it was my system 😅

    • @blockdisney3676
      @blockdisney3676 4 года назад +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 4 года назад +7

      @@blockdisney3676 I think you can start with this anaconda
      ruclips.net/video/YJC6ldI3hWk/видео.html

    • @blockdisney3676
      @blockdisney3676 4 года назад +1

      @@contantino_mm Thank you so much!

    • @SaveTheHedgehog
      @SaveTheHedgehog 4 года назад

      @@contantino_mm And where to start without this anaconda?

  • @RaffiSosikian
    @RaffiSosikian Год назад +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.

  • @realMrLupu
    @realMrLupu 2 года назад +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'])]

  • @roya9761
    @roya9761 3 года назад +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)

  • @lukenothere1252
    @lukenothere1252 4 года назад +60

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

  • @VERY_TALL_MAN
    @VERY_TALL_MAN 4 года назад +41

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

    • @irvin1241
      @irvin1241 4 года назад +1

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

    • @gomes8335
      @gomes8335 4 года назад +8

      Waste of time.

    • @VERY_TALL_MAN
      @VERY_TALL_MAN 4 года назад +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 4 года назад +5

      @@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 4 года назад +2

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

  • @Grayson4806
    @Grayson4806 Год назад +119

    Hit 200k today. I'm really grateful for all the knowledge and nuggets you had thrown my way over the last months. Started with 14k in June 2022

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

      How please? Am a newbie in crypto investment, please can you guide me through on how you made

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

      Mrs harriet dixson service is a talk of the town in North Holland Netherlands , I started with a little amount of 1ETH, and she made huge returns, and I have been constantly investing with her

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

      ​@AgbamucheRichardshe often interacts on Telegrams, using the user below

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

      @Harrietdixson12

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

      Tell her I referred you
      I can't hide her contact information from anyone who is interested in investing with her because she has really helped me a lot with my trade, today I am smiling

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

    I know absolutely nothing about Python… But this is the first video that seems to clearly explain what my brain just can’t seem to wrap itself around. When I designed the investment strategy that I use, it was simple math, well, it was math… But to suddenly take the algo and transfer it into a language that I am not familiar with, seems like the worst possible prostitution of my time…
    I get it, learn Python then write code and be happy ever after but, but, but, why can’t I do that in English? I can read medical journals on just about any topics, all I need is a dictionary and some extra time, I don’t need to mortgage a significant portion of my time on this planet just to learn something that will be old info by the time I’m done learning it… There’s gotta be a practical way to do that in English! Heck in French or Spanish or Russian or any languages! Geese this is so frustrating!!!!!!!

  • @GeorgeFabian-wz1ry
    @GeorgeFabian-wz1ry Год назад

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

  • @primaire7
    @primaire7 2 года назад +10

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

  • @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 года назад +28

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

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

      @@panhuragan4388 😂😂

  • @andyatmosphere
    @andyatmosphere 3 года назад +6

    Never wrote one line of code in my life and I feel ready to go work for google. Amazing!

  • @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

  • @pineapple3832
    @pineapple3832 Год назад +1

    People have to remember the point of these videos is to teach you to code a trading algo. He isnt saying that algo will be profitable. That requires some really complex mathematical models like what Jim Simmons and Renaissance do. But these videos are still valuable to learn to build something for its own sake nevertheless.

  • @Freddyyyy266
    @Freddyyyy266 2 года назад +18

    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.

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

      @Raul Guzmann 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!

    • @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.

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

      Does Mr Clemans really help people trade?

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

      @@alexpavarde8698 its a scam never listen or join courses about the stock market, they're all a scam.

  • @lucasinoi2145
    @lucasinoi2145 3 года назад +52

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

  • @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 3 года назад +6

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

  • @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.

  • @Avman20
    @Avman20 3 года назад +34

    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!

    • @tiandeqiang
      @tiandeqiang 3 года назад +2

      i agree ,especial racking bugs setion i like it

  • @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

    • @tiandeqiang
      @tiandeqiang 3 года назад +5

      1.you visit website www.python.org/downloads/
      2.open cmd type
      "pip install panda"
      "pip install numpy"
      "pip install jupyterlab"

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

      @@tiandeqiang 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".

  • @Weckmuller
    @Weckmuller 3 года назад +6

    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

  • @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')

  • @jacksonzhan
    @jacksonzhan 3 года назад +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)

  • @duke_adi
    @duke_adi Год назад +3

    Finished the entire course in 3 days with the new API version ! Feels good!

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

      @duke_adi, which API version did you use? I'm getting the 403 error when using the one mentioned in the video

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

      yahh me to i get the same error@@andrewhenderson593

    • @mamacita5636
      @mamacita5636 11 месяцев назад

      same, did you find a solution?@@andrewhenderson593

  • @BenjaminOrthodox
    @BenjaminOrthodox 3 года назад +9

    Trading algorithm
    1. Mean Reversion
    2. Statistical Arbitrage
    3. Momentum
    4. Trend following
    5. Market making & Order execution
    6. Sentiment

  • @HalHamza
    @HalHamza 3 года назад +2

    I just started learning python, it's only been days, but this is my end goal. So I'll be saving this video for later, hopefully it won't be too long before I'm ready for this course.

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

      bro i too want to start with python nd my end goal is gonna be this video. Can you help me where to begin with nd when i will be ready to go with this one

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

      @@zeroXmlbb if you're new to coding, I would start at the basics. Learning functions and variables are a good place to start. If you're like me, and this is your first programming language, I would give myself 3 to 6 months before getting to this level.

  • @ztlf
    @ztlf 2 года назад +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.

  • @fbitti
    @fbitti 4 года назад +5

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

  • @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!

  • @georgekrax
    @georgekrax 4 года назад +30

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

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

    Самое важное в рынке -это понять межбанковский алгоритм поставки цены, далее уже углубляться в микро конъюнктуру рынка, чтобы стоп был коротким и тейк 1к3 минимум. Тогда и математика начинает работать и депозит растет в пропорциях в целостности и гармоничности!

  • @satvikjha8932
    @satvikjha8932 4 года назад +8

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

  • @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.

  • @huysamdua86
    @huysamdua86 Год назад +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 6 месяцев назад

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

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

    I don't know much about these or it works, when it comes to trading I have learnt to have an open mind as there are different trading strategies out there.

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

      Do you trade stocks with this?

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

      @@michealvaughan8089 I don't use these but would like to know if it guarantee a 100% win ratio when trading.

  • @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.

  • @Xavier-gl3cj
    @Xavier-gl3cj 5 месяцев назад +13

    The API token is not valid anymore, kindly correct it or suggest any other token that we can use

  • @ducktectivewhitewings9276
    @ducktectivewhitewings9276 2 года назад +4

    Some stocks have been delisted, to make the tutorial work you must delete the following stocks from either the stocks dataframe or the original sp_500_stocks.csv file:
    'DISCA', 'HFC', 'VIAC', 'WLTW'

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

      in fact u can just use 'try:... except:...' structure to avoid the error but don't change the original file

    • @financeguide.
      @financeguide. 2 года назад

      Hi. Do you know how to get the CSV file, I dont find it.

  • @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.

  • @Maximus18.6
    @Maximus18.6 Год назад +1

    This course is the best on RUclips and it is better than University degrees. Thank you so much for your contribution to us. Is there any way to contribute to you and paying for a certificate after finishing this course?

  • @kongseeyang959
    @kongseeyang959 3 года назад +5

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

  • @AliAhmed-ox1gy
    @AliAhmed-ox1gy 3 года назад +12

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

  • @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!

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

    I am from Winnipeg, and I am astounded by your "aboot", I feel like I have been saying it wrong my whole life. Great Video!!

  • @nurbolkapakov2282
    @nurbolkapakov2282 2 года назад +1

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

  • @marcoantoniothome3830
    @marcoantoniothome3830 2 года назад +3

    Awesome video, I have learned a lot from watching it untill the end, the only thing is that when I tried to replicate the last project with a real production IEX cloud API it returned error during the module Building a Better Quantative Value Strategy : JSONDecodeError: Expecting value: line 1 column 1 (char 0)

  • @the_phenomenal_content5377
    @the_phenomenal_content5377 4 года назад +7

    Thanks u soo much sir
    U provide free education
    ❤️❤️ Love from india

  • @shayansh2821
    @shayansh2821 3 года назад +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 3 года назад

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

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

    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.

  • @gmail5817
    @gmail5817 4 года назад +6

    First, I'd like to thank the presenter Nick. Here's my thought about this course.
    I was following this course during the first project then fast-forwarded the rest of it. I can confirm it provides an ok depth of alg trading to the audiences who have no knowledge of alg trading. But seriously it would be great if the presenter is able to introduce some more trading algorithms even though just conceptually. I personally feel the presenter focuses too much on the implementation itself and most of the content is to demonstrate how to gather data from idx cloud. I know getting data is crucial but it has very little to do with trading. I don't see the point repeating data collection in all of the three projects. Overall, it is good but not great. Also, the presenter is rushing hard in speaking so if you have little exp in data science or python, you easily get lost.

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

      I'm puzzled by your comment about data's having little to do with trading. You can be a successful trader without looking at prospectuses, without keeping up with the news, etc. Many traders look at nothing but data.

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

      @@CalebDiT I agree with what you said but what I mean is that ppl here are more interested in algorithmic part not data processing part. The whole series can reduced to within an hour tbh.

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

    Great coding tutorial here. Perhaps next time reduce the mugshot size so we can actually seem the code as it goes out of sight at times.

  • @chaddsmith3354
    @chaddsmith3354 Год назад +11

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

  • @kathyferro3524
    @kathyferro3524 3 года назад +2

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

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

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

  • @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 2 года назад

      Bro u intrested to learn more about algo trading?

  • @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 3 года назад +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 3 года назад

      Hey thans guys, you all saved the day :)

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

      @@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

  • @Tanus912
    @Tanus912 3 года назад +4

    Notes for myself:
    7:06 Quant investing strategy steps.
    10:33 what's an API

  • @GeorgeFabian-wz1ry
    @GeorgeFabian-wz1ry Год назад

    Only reason for extensive comment that you are receiving great reviews, takes effort to create course like it. Utilizing for example chatgpt is very useful in creating an extensive course like this.

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

    Algo Trading - List of algo trading & backtesting softwares
    - (Tradetron) algo and backtest
    - (Robomatic) algo and backtest
    - (Quntsman) algo and backtest
    - (Quantiply) algo
    - (Stockmoxk) backtest
    - (Algotest) backtest

  • @ApakukiNayacakalou
    @ApakukiNayacakalou 3 года назад +6

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

  • @ezpz3554
    @ezpz3554 3 года назад +7

    if yall getting a modulenotfound error with the secrets.py u can either hardcode the string or import import_ipynb after doing a pip install

  • @pencilkid1123
    @pencilkid1123 4 года назад +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 4 года назад +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.

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

    When you take the user input this could be an option so that it will keep asking until they provide anportfolio_size = input('Enter the value of your Portfolio : ')
    while True:
    try:
    val = float(portfolio_size)
    print(portfolio_size)
    break
    except ValueError as e:
    print('That"s not a number,
    please try again')
    portfolio_size = input('Enter the value of your Portfolio : ')
    print(portfolio_size)

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

    Success is about focusing Your energy on what creates results and using what you already know

  • @mycul_
    @mycul_ 3 года назад +28

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

  • @karolmileszko
    @karolmileszko Год назад +12

    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?

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

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

  • @ShubhamAgrawal0473
    @ShubhamAgrawal0473 3 года назад +2

    This video provides a great way of analyzing stocks using Python but it definitely isn't trading. We can call it quantitative analytical methods but these are definitely not algorithm-based trading because we don't have a clear strategy here (By strategy I mean the Entry/Exit signal, order type, etc). Good for learning but not at all practical

  • @rockykamen-rubio1600
    @rockykamen-rubio1600 3 года назад +4

    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

  • @knakibwt
    @knakibwt Год назад +3

    Great video, thanks! but very sad ,no way to test myself...indeed, seems api token doesnt work anymore :/

  • @vivekrathore6817
    @vivekrathore6817 Год назад +10

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

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

    people think if they are coding it already makes them sophisticated and they are going to win the market. In fact, if you can't make a lot of money doing it manually, you can't do this with python, unless its a high frequency trading which you can't do anyway from home.
    Don't mistakenly think if you write code you are some sort of sophisticated trader, you still need THE MATH.
    Most people do not have the math, and never will.
    The strategies presented here all can be easily proven to be wrong using a simple good python backtest.

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

    after 15 mins, i already know this is a very good course

  • @cstroger
    @cstroger 2 года назад +3

    In S&P 500, KSU is replaced by EPAM on December 14th. You will have to revise the sp500 csv file to run successfully.

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

      came here to write exact same comment lol thanks ! was getting json decode error.

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

      How do i revise the CS1 file?

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

      I was getting error at DISCA symbol, which is now gone from the new S&P 500 list.
      Also you have to change .append() with .concat()
      You can look how on googling -> StackOverflow: Add Pandas Series as a Row to Pandas DataFrame