Added a simple ui

This commit is contained in:
2026-08-11 21:20:07 +03:00
parent c1c02e2b0d
commit 1faca2cdda
6 changed files with 1095 additions and 8 deletions
+9
View File
@@ -69,6 +69,13 @@ The main Python entry points are:
- `src/trading_bot/data/train_pipeline.py` for dataset generation and model training.
- `src/trading_bot/models/trade.py` for Alpaca account inspection and SPY rebalancing.
- `src/trading_bot/ui/dashboard.py` for the read-only performance dashboard.
Serve the read-only dashboard:
```sh
mise exec -- uv run python -m trading_bot.ui.dashboard --paper
```
## Documentation
@@ -76,6 +83,8 @@ See [docs/README.md](docs/README.md) for the initial architecture notes and deci
The current data collection note is [docs/data-fetcher.md](docs/data-fetcher.md), and the training dataset contract is [docs/training-dataset.md](docs/training-dataset.md).
The read-only dashboard design is documented in [docs/read-only-ui.md](docs/read-only-ui.md).
The first dataset generation notebook is [notebooks/spy_direction_dataset.ipynb](notebooks/spy_direction_dataset.ipynb).
Manual test instructions for the Alpaca fetcher are in [docs/manual-test/README.md](docs/manual-test/README.md).