How to Get Financial Statements Using Python

แชร์
ฝัง

ความคิดเห็น • 5

  • @sherinab770
    @sherinab770 3 หลายเดือนก่อน +1

    Hi. This is very useful. Appreciate. Been keeping all my formulas in excel, but getting too large and slow. Now learning to automate that by building my first Python. Watched and learned as much in this 48 hours. For us, we want to 'scrape' in batches of ticker symbols. possibly need to learn up more syntax in Python to achieve that. Then build our own fundamentals formulas to perform horizontal or vertical analysis.
    Your videos has everything I needed. But limited to one symbol at a time, I would need to look up other vides to incorporate that "list of symbols" and run them only once periodically.

    • @Intrendias
      @Intrendias  3 หลายเดือนก่อน

      Hey! Thank you for watching the video and your comment! A for loop could work through a list of tickers one at a time to perform your scrape.
      For example,
      tickers = ['AAPL',"GOOGL','AMZN']
      for ticker in tickers: #must indent below
      print(f'Now on {ticker})
      #perform task here

  • @aarondelarosa3146
    @aarondelarosa3146 8 หลายเดือนก่อน +1

    Can you calculate DCF (Discounted Cash Flow) in order to determine Intrinsic value using Python?

    • @Intrendias
      @Intrendias  8 หลายเดือนก่อน +1

      I’m happy to look into doing DCF in Python. Thank you for your comment and watching Intrendias!

    • @Intrendias
      @Intrendias  2 หลายเดือนก่อน

      Hey @aarondelarosa3146! I uploaded part 1 of the Discount Cash Flow Model in Python series: th-cam.com/video/CNU2DZM9eZk/w-d-xo.html. Part 2 will come out soon! I hope you find the video helpful!