https://github.com/shortthirdman/algorithmictrading
Optimizing Algorithmic Trading
https://github.com/shortthirdman/algorithmictrading
Last synced: 11 months ago
JSON representation
Optimizing Algorithmic Trading
- Host: GitHub
- URL: https://github.com/shortthirdman/algorithmictrading
- Owner: shortthirdman
- License: mit
- Created: 2025-05-12T11:46:08.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-10T11:30:29.000Z (12 months ago)
- Last Synced: 2025-07-10T18:08:39.216Z (12 months ago)
- Language: Jupyter Notebook
- Size: 561 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Algorithmic Trading
Optimizing Algorithmic Trading
---
[](https://jupyter.org/try)  [](https://mybinder.org/v2/gh/shortthirdman/AlgorithmicTrading/main)   [)](/notebooks)
---
## Local Development Setup
- Create a Python virtual environment and activate
```shell
$ python -m venv --upgrade-deps --clear dev
$ ./dev/Scripts/activate
$ export PIP_CONFIG_FILE=".\pip.conf"
```
- Install the packages and dependencies as listed in requirements file
```shell
$ pip install -U -r requirements.txt --no-cache-dir --disable-pip-version-check
```
- Start your development `Jupyter Notebook` or `Jupyter Lab` server
```shell
$ jupyter lab --notebook-dir=.\notebooks --no-browser
```
---