Advanced Portfolio Analysis using Numerical Optimization Algorithms

Поделиться
HTML-код
  • Опубликовано: 23 мар 2024
  • In this video I am going over implementing advanced Portfolio Analysis using Numerical Optimization Algorithms. Use-case here is constructing the Efficient Frontier of the Dow Jones Industrial Average. (30 assets).
    I am recapping the previous (iterative) approach, going over the optimization conditions such as constraints and bounds and then coding the optimization in Python.
    There are a ton of more interesting things to check out here so do your part and like, comment and share the video.
    Highly recommended is my in depth Python for Finance course:
    www.pythonforfinance.info
    Get access to the Notebooks as well as support the channel by becoming a member here:
    Get the Notebook/Source code by becoming a Tier-3 Channel member:
    / @algovibes
    #python #finance #optimization
  • НаукаНаука

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

  • @jean-francoislebroch9171
    @jean-francoislebroch9171 Месяц назад +2

    Fascinating, your code concepts take a step up, less beginners friendly but very powerful

    • @Algovibes
      @Algovibes  Месяц назад +1

      Thank you mate :-)

  • @kawabiker2655
    @kawabiker2655 Месяц назад +1

    wieder ein grossartiges video. über w_mvp = np.dot(Sinv, one) / np.dot(one.T, np.dot(Sinv, one)) lassen sich bequem die weights des minimum variance portfolios erhalten, wobei one ein einservektor und Sinv die Inverse der Kovarianzmatrix sind. dann kann man bei diesem Punkt starten und nur den oberen ast (die eigentliche ef) zeichnen. danke sehr.

  • @CrynetOmega
    @CrynetOmega Месяц назад +1

    Great video! Could you make a video on how to use the python-kraken sdk for a live-data trading bot? Or even for trading NFTs?

  • @prajwaltuladhar6742
    @prajwaltuladhar6742 Месяц назад +1

    Great video as always. Waiting for your videos on double sorted factor (value, momentum, size, low vol, etc) portfolios!

  • @anilmm2005
    @anilmm2005 Месяц назад +1

    Great one . Waiting for follow up video on optimising sharpe ratio and global minimum

    • @Algovibes
      @Algovibes  Месяц назад

      Thanks mate! Can't promise, video didn't perform that well unfortunately

  • @bryan-9742
    @bryan-9742 Месяц назад +1

    Great Work! Is that an efficient frontier or a minimum variance portfolio?

    • @Algovibes
      @Algovibes  Месяц назад

      Thx mate, doing an EF here.