Getting Started

Welcome to InvestOS!

We built this PyPi module to make institutional-grade backtesting and portfolio optimization simple, extensible, and open-source.

This guide covers getting up and running with InvestOS.

Let's jump in!

Prerequisites

To run InvestOS you'll need:

Although not required, running InvestOS might be easier if you have:

  • Poetry, a package and dependency manager
  • Familiarity with pandas
    • The popular Python data analysis package (originally) released by AQR Capital Management

Installation

If you're using pip:

$ pip install investos

If you're using poetry:

$ poetry add investos

Importing InvestOS

At the top of your python file or .ipynb, add:

import investos as inv

Next: portfolio backtesting

Congratulations on setting up InvestOS!

Let's move on to our next guide: portfolio backtesting.