minitrade
A personal automated trading system
File Explorer
Download Latest Version (.zip)- build_docs.yml
- test_code.yml
- test_external.yml
- Multiple Time Frames.ipynb
- Parameter Heatmap & Optimization.ipynb
- Quick Start User Guide.ipynb
- Strategies Library.ipynb
- Trading with Machine Learning.ipynb
- api_backtest.md
- api_broker.md
- api_datasource.md
- backtesting.md
- cli.md
- compatibility.md
- contributing.md
- index.md
- install.md
- trading.md
- 1_Trading.py
- 2_Strategy.py
- 3_Datasource.py
- 4_Broker.py
- 5_Task.py
- 6_Log.py
- 7_Settings.py
- 8_Fred.py
- Home.py
- __init__.py
- __main__.py
- _test.py
- EURUSD.csv
- GOOG.csv
- __init__.py
- _plotting.py
- _stats.py
- _util.py
- autoscale_cb.js
- backtesting.py
- lib.py
- __init__.py
- utils.py
- __init__.py
- base.py
- ib.py
- ibgateway.py
- manual.py
- __init__.py
- alpaca.py
- base.py
- cboe_futures.py
- cboe_index.py
- eastmoney.py
- eodhd.py
- ib.py
- tiingo.py
- twelve.py
- union.py
- yahoo.py
- 0.1.28.sql
- 0.1.29.sql
- 0.1.30.sql
- 0.1.32.sql
- 0.1.34.sql
- 0.1.36.sql
- consolidated.sql
- __init__.py
- scheduler.py
- trader.py
- config.py
- mailjet.py
- mtdb.py
- telegram.py
- cli.py
- db_cleanup.py
- ib_eod_download.py
- ib_login_reminder.py
- rotate_buying.py
- storage_test.py
- __init__.py
- fixture.py
- README.md
- test_backtest.py
- test_broker.py
- test_datasource.py
- test_strategy.py
- test_trader.py
- .gitignore
- CHANGELOG.md
- CONTRIBUTING.md
- Dockerfile
- LICENSE.md
- mkdocs.yml
- mtctl.sh
- poetry.lock
- pyproject.toml
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/dodid/minitrade
Downloads the entire project code from GitHub to your computer.
cd minitrade
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t minitrade .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 minitrade
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Python
EasyPrerequisites
$ pip install minitrade
Installs the Python libraries listed in requirements.txt (or similar).
If it runs without errors and prints output in the terminal, it worked.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
