Code Monkey home page Code Monkey logo

project1's Introduction

Fab Five Portfolio Picker


Columbia University FinTech Bootcamp - Project 1

Collaborators

  • Sean Senhouse
  • Thomas Magee
  • Ozwald Roche
  • Philip Shum
  • Jack Hillman

Motivation

Custom image using marvel spiderman to illustrate different tech stocks

For project 1, our team, "Fab Five Advisors," created a portfolio investment tool based on some of our in-class assignments. However, our professor challenged us to dig deeper and leverage risk parity portfolio theory to develop our tool. With that in mind, we created a tool that takes a client's risk tolerance and asset choices to create a portfolio. The program also uses a Monte Carlo simulation to forecast the future returns of the portfolio. Finally, we created summary statistics and charts to communicate and report our results.

Technologies

This project leverages python 3.7 specifically and assumes that Jupyter Lab has been installed. In addition, you would need to have the following modules installed:

  • pandas
  • datetime
  • riskfolio
  • yfinance
  • pathlib

Custom modules

These modules we leveraged to provide inputs and simulation results:

  1. MCSimulation.py - Provided by Columbia FinTech BootCamp
  • This module is used to to forecast the future returns of the portfolio over the client's investment horizon.
  1. clientprofile.py - Developed by Fab Five Advisors
    1. Quantify the users risk tolerance by asking the users 5 questions to which they are only allowed to answer with integers 1-4 (otherwise the verifier function forces them to retry). Each answer is then aggregated, and the mean is found to give the client's tolerance an numeric value for their risk tolerance. This variable is passed on to the MCForecastTools.py and the Riskfolio Library for the next process.
    1. Collect the users input on how long their desired investment time frame is. This variable is used for the Monte Carlo Simulation.

Installation Guide

To review Project 1:

  • First install the following dependent libraries
pip install riskfolio-lib
pip install yfinance
  • First initialize the dev environment and the Jupyter lab by typing the following at the command prompt:
conda activate dev
jupyter lab
  • Second open the Jupyter Notebook titled: fab_five_porfolio_picker.ipynb

  • Run all of the code answering questions on risk tolerance and investment horizon

Resources

Critical to our completing this project were the following websites. We would recommend that you use these resources. They helped us:

Data Collection

When assessing the input data for our risk parity model, we wanted to put an emphasis on risk-diverse assets to include in our "universe". To do so, our team agreed to include the top 10 individual stocks, ETFs, and bonds ranked by various metrics/sources.

assets = ["XLC", "XLY", "XLP", "XLE", "XLF", "XLV", "XLI", "XLB", "XLRE", "XLK", "XLU", "AAPL", "MSFT", "NVDA", "AMZN", "BRK-B", 
"GOOG", "META", "UNH", "XOM", "AGG", "BND", "LQD", "VCIT", "BNDX", "TMF", "TLT", "ICVT", "LKOR", "FBND"]
  • Stocks (highest volatility): Top 10 by index weight
  • ETFs (medium volatility): Top 10 industry sectors
  • Bonds (lowest volatility): Top 10 bonds to by per money.usnews.com

The diversity in the level of risk of our assets allowed for a larger spread of weight allocation during the optimization stage of the risk model.

ETL and Cleaning

Yahoo finance formatted their data to provide a relatively painless ETL process. Using the following lines of code, we were able to download the raw historical data over our desired period of time, extract the specific values required for our analysis, and sort the data by asset instead of by performance measure (opening price, closing price, etc...)

og_data = yf.download(assets, start = start, end = end)
data = og_data.loc[:,('Adj Close', slice(None))]
data.columns = assets

Y = data[assets].pct_change().dropna()

Y_data

Results

To illustrate the results of our model, we ran scenarios to understand the extremes of the model. Specifically, if we are to maximize returns based on the client's risk aversion, how do the results in our portfolio change when the client's risk tolerance is changed?

Risk Avoidant Client

Based on our questionnaire, the risk-avoidant client would have entered all '1' for the answers to the questions. As a result, the model returned a portfolio that put an emphasis on bonds and sector ETFs, which typically result in low returns and low risk.

Figure 1

Risk avoidant optimal porfolio

Figure 2

Risk avoidant optimal portfolio efficient frontier

Risky Client

Based on our questionnaire, the risky client would have entered all '4' for answers. As a result, the model returned a portfolio that put an emphasis on singular stocks, which result in high returns but also and high risk.

Figure 3

Risky optimal porfolio

Figure 4

Risky optimal portfolio efficient frontier

MonteCarlo Forecast:

Using the weighted assets determined by our risk model, our team forecasted the optimized portfolios over the time horizon inputted by the user (in this case, 10 years). The results of our forecast for the lowest and highest risk tolerances are below:

Risk Avoidant Client

The 10 year Monte Carlo forecast predicted, within a 95% confidence interval, that the expected returns will be between 0.78 and 1.41% for the least risk tolerant client.

Risk avoidant forecast

Risky Client

The 10 year Monte Carlo forecast predicted, within a 95% confidence interval, that the expected returns will be between 1.08% and 498.69% for the most risk tolerant client.

Risky forecast

Next Steps

One of the exciting outcomes of this project is that there is a long list of options for further analysis and customization of the report. The following is not an exhaustive list but will provide ideas on what other steps can be taken with this project.

Additional questions

  • Evaluate how to build the universe of investments. For simplicity and to meet our project timeline, we created a static universe comprising a mixed bag of instruments, including stocks, bonds, and ETFs. We did this to ensure not just various companies but asset classes.

  • How to best define risk? Specifically, how can we develop a more in-depth analysis for creating the investor profile? As we started to use the model to solve for the optimal portfolio, we observed that the model follows a logarithmic estimation for the optimal portfolio weights. Therefore, we needed to scale our risk aversion factor to see the extremes of the portfolio recommendations based on our universe. Developing a better understanding of this relationship will allow us to quantify the risk tolerance, thus allowing us to create a greater spread of risk tolerance and portfolios.

=======

project1's People

Contributors

0zzyt3ch avatar hillmanj1995 avatar shumshumaa avatar ssenhouse avatar tmagee28 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.