-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (34 loc) · 918 Bytes
/
Copy pathMakefile
File metadata and controls
46 lines (34 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
.PHONY: help install test download record backtest wfa optuna live telegram docker-up
PYTHON ?= python3
PIP ?= pip3
help:
@echo "install Install package"
@echo "test Run pytest"
@echo "download Download historical data"
@echo "record Start live recorder"
@echo "backtest Run event-driven backtest"
@echo "wfa Run rolling WFA"
@echo "optuna Run parameter search"
@echo "live Run live/dry runtime"
@echo "telegram Run Telegram command bot"
@echo "docker-up Start docker compose"
install:
$(PIP) install -e .[dev]
test:
pytest
download:
$(PYTHON) scripts/download_data.py
record:
$(PYTHON) scripts/record_data.py
backtest:
$(PYTHON) scripts/run_backtest.py
wfa:
$(PYTHON) scripts/run_wfa.py
optuna:
$(PYTHON) scripts/run_optuna.py
live:
$(PYTHON) scripts/run_live.py
telegram:
$(PYTHON) scripts/run_telegram_bot.py
docker-up:
docker compose up --build