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
Option 1: Install from PyPI (Recommended)
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:
Clone the repository:
git clone https://github.com/coding-kitties/investing-algorithm-framework.git
cd investing-algorithm-frameworkInstall in development mode:
pip install -e .
Next Steps
Once installation is complete, proceed to Application Setup to create your first trading application!