Skip to main content

Markowitzify will implement portfolio optimization based on the theory described by Harry Markowitz (University of California, San Diego), and elaborated by Marcos M. Lopez de Prado (Cornell University). Additionally, this repository simulates individual stock performance over time using Monte Carlo methods.

Project description

Markowitzify

(C) 2020 Mark M. Bailey, PhD

About

Markowitzify will implement portfolio optimization based on the theory described by Harry Markowitz (University of California, San Diego), and elaborated by Marcos M. Lopez de Prado (Cornell University). In 1952, Harry Markowitz posited that the investment problem can be represented as a convex optimization algorithm. Markowitz's Critial Line Algorithm (CLA) estimates an "efficient frontier" of portfolios that maximize an expected return based on portfolio risk, where risk is measured as the standard deviation of the returns. However, solutions to these problems are often mathematically unstable. Lopez de Prado developed a machine-learning solution called Nested Cluster Optimization (NCO) that addresses this instability. This repository applies the NCO algorithm to a stock portfolio. Additionally, this repository simulates individual stock performance over time using Monte Carlo methods.

References

Updates

  • 2020-11-28: Added Monte Carlo Simulation Capability
  • 2020-11-27: Initial commit

Installation

pip install markowitzify

Usage

Object Instantiation

import markowitzify

portfolio_object = markowitzify.portfolio(**options)

Attributes:

  • portfolio_object.portfolio = Portfolio (Pandas DataFrame).
  • portfolio_object.cov = Portfolio covariance matrix (Numpy array).
  • portfolio_object.optimal = Optimal portfolio configuration (Pandas DataFrame).
  • portfolio_object.help_() = View instructions.
  • portfolio_object.about() = View about.

Parameters:

  • API_KEY (optional) = (str) API Key from Market Stack (only requried if using this method to build portfolio).
  • verbose (optional, default = False) = (bool) Turn on if you like Zelda jokes.

Updating Parameters

Set API Key:
portfolio_object.set_API_KEY(<STR>)

Set verbose:
portfolio_object.set_verbose(<BOOL>)

Building Portfolio

Portfolio objects can be instantiated by uploadng a CSV of portfolio performance, or using the Market Stack API (https://marketstack.com/, API key required - note that access may be limited if using an unpaid account).

Market Stack API:
portfolio_object.build_portfolio(TKR_list, time_delta, **options)

Parameters:

  • datareader (optional, default = True) = (bool) If True, will use Pandas data_reader to find stock data. If False, will use Market Stack API (requires API Key).
  • TKR_list (required) = (list) List of ticker symbols for portfolio.
  • time_delta (required) = (int) Number of days to collect price data (either from today or from end_date).
  • end_date (optional, default = today's date) = (str, %m-%d-%Y) Specify the end date for the time delta calculation.

Upload CSV:
portfolio_object.import_portfolio(input_path, **options)

Parameters:

  • input_path (required) = (str) Location of CSV file.
  • filename (optional, default = 'portfolio.csv') = (str) Optional file name for portfolio CSV file.
  • dates_kw (optional, default = 'date') = (str) Name of column in portfolio that contains the date of each closing price.

Export Portfolio:
portfolio_object.save(file_path, **options)

Parameters:

  • file_path (required) = (str) Location of CSV file.
  • filename (optional, default = 'portfolio.csv') = (str) Optional file name for portfolio CSV file.

Finding Optimal Weights

Implements the Markowitz CLA algorithm.

portfolio_object.optimize(**options)

Parameters:

  • mu (optional, default = None) = (float) When not None, algorithm will return the Sharpe ratio portfolio; otherwise will return the NCO portfolio.
  • maxNumClusters (optional, default = 10 or number of stocks in portfolio - 1) = (int) Maximum number of clusters. Must not exceed the number of stocks in the portfolio - 1.

Trend Analysis

Trend analysis can be performed on securities within the portfolio. Output is a Pandas DataFrame.

trend_output = portfolio_object.trend(**options)

Parameters:

  • exclude (optional, default = []) = (list) List of ticker symbols in portfolio to exclude from trend analysis. Default setting will include all items in portfolio.

Monte Carlo Simulation

Simulated market returns. Output is a Pandas DataFrame with metrics for all included ticker symbols.

simulation_output = portfolio_object.simulate(threshold=0.2, days=100, **options)

Parameters:

  • threshold (required, dafault = 0.2) = (float) Probability of a 'threshold' return, e.g., 0.2 would calculate the probability of a 20% return.
  • days (required, default = 100) = (int) Number of days in Monte Carlo simulation.
  • on (optional, default = 'return') = (str) Predicted return will be calculated on percent return if 'return' or on raw price if 'value'.
  • exclude (optional, default = []) = (list) List of ticker symbols in portfolio to exclude from trend analysis. Default setting will include all items in portfolio.
  • iterations (optional, default = 10000) = (int) Number of iterations in Monte Carlo simulation.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

markowitzify-0.0.3.tar.gz (8.7 kB view hashes)

Uploaded Source

Built Distribution

markowitzify-0.0.3-py3-none-any.whl (11.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page