Skip to main content

Installation

Get started with the Investing Algorithm Framework by following these simple installation steps.

Prerequisites

Before installing the framework, ensure you have:

  • Python 3.10+ installed on your system
  • pip (Python package installer)
  • git (for cloning repositories)

Installation Options

Install the latest stable version from PyPI:

pip install investing-algorithm-framework

Option 2: Install from Source

For the latest development version, install directly from GitHub:

pip install git+https://github.com/coding-kitties/investing-algorithm-framework.git

Option 3: Development Installation

If you plan to contribute to the framework:

  1. Clone the repository:

    git clone https://github.com/coding-kitties/investing-algorithm-framework.git
    cd investing-algorithm-framework
  2. Install in development mode:

    pip install -e .

Next Steps

Once installation is complete, proceed to Application Setup to create your first trading application!