https://github.com/jankrepl/deepdow
Portfolio optimization with deep learning.
https://github.com/jankrepl/deepdow
allocation convex-optimization deep-learning finance machine-learning markowitz portfolio-optimization pytorch stock-price-prediction timeseries trading wealth-management
Last synced: 8 months ago
JSON representation
Portfolio optimization with deep learning.
- Host: GitHub
- URL: https://github.com/jankrepl/deepdow
- Owner: jankrepl
- License: apache-2.0
- Created: 2020-02-02T08:46:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-24T15:56:49.000Z (almost 2 years ago)
- Last Synced: 2025-03-05T23:48:56.976Z (8 months ago)
- Topics: allocation, convex-optimization, deep-learning, finance, machine-learning, markowitz, portfolio-optimization, pytorch, stock-price-prediction, timeseries, trading, wealth-management
- Language: Python
- Homepage: https://deepdow.readthedocs.io
- Size: 2.24 MB
- Stars: 985
- Watchers: 26
- Forks: 142
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-systematic-trading - Deepdow - with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg) | (Analytics / Optimization)
- awesome-quant - DeepDow - Portfolio optimization with deep learning (Python / Trading & Backtesting)
- awesome-ai-in-finance - DeepDow - Portfolio optimization with deep learning. (Strategies & Research / Portfolio Management)
- awesome-systematic-trading - Deepdow - commit/jankrepl/deepdow/master)  | Python | - Python package connecting portfolio optimization and deep learning. Its goal is to facilitate research of networks that perform weight allocation in one forward pass. (Analytic tools / Optimization)
- awesome-quant - DeepDow
- awesome-quant - DeepDow
README

[](https://codecov.io/gh/jankrepl/deepdow)
[](https://deepdow.readthedocs.io/en/latest/?badge=latest)
[](https://badge.fury.io/py/deepdow)
[](https://zenodo.org/badge/latestdoi/237742797)
`deepdow` (read as "wow") is a Python package connecting portfolio optimization and deep learning. Its goal is to
facilitate research of networks that perform weight allocation in **one forward pass**.
# Installation
```bash
pip install deepdow
```
# Resources
- [**Getting started**](https://deepdow.readthedocs.io/en/latest/auto_examples/end_to_end/getting_started.html)
- [**Detailed documentation**](https://deepdow.readthedocs.io/en/latest)
- [**More examples**](https://deepdow.readthedocs.io/en/latest/auto_examples/index.html)
# Description
`deepdow` attempts to **merge** two very common steps in portfolio optimization
1. Forecasting of future evolution of the market (LSTM, GARCH,...)
2. Optimization problem design and solution (convex optimization, ...)
It does so by constructing a pipeline of layers. The last layer performs the allocation and all the previous ones serve
as feature extractors. The overall network is **fully differentiable** and one can optimize its parameters by gradient
descent algorithms.
# `deepdow` is not ...
- focused on active trading strategies, it only finds allocations to be held over some horizon (**buy and hold**)
- one implication is that transaction costs associated with frequent, short-term trades, will not be a primary concern
- a reinforcement learning framework, however, one might easily reuse `deepdow` layers in other deep learning applications
- a single algorithm, instead, it is a framework that allows for easy experimentation with powerful building blocks
# Some features
- all layers built on `torch` and fully differentiable
- integrates differentiable convex optimization (`cvxpylayers`)
- implements clustering based portfolio allocation algorithms
- multiple dataloading strategies (`RigidDataLoader`, `FlexibleDataLoader`)
- integration with `mlflow` and `tensorboard` via callbacks
- provides variety of losses like sharpe ratio, maximum drawdown, ...
- simple to extend and customize
- CPU and GPU support
# Citing
If you use `deepdow` (including ideas proposed in the documentation, examples and tests) in your research please **make sure to cite it**.
To obtain all the necessary citing information, click on the **DOI badge** at the beginning of this README and you will be automatically redirected to an external website.
Note that we are currently using [Zenodo](https://zenodo.org/).