Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions engine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,16 @@ zero-paper-api --journal .zero/decisions.jsonl --hyperliquid-live-prices
curl -fsS 'http://127.0.0.1:8765/market/quote?symbol=BTC'
```

If `/market/quote` returns `503` with `CERTIFICATE_VERIFY_FAILED` (common on
some local Python installs), install a CA bundle and restart `zero-paper-api`
from the same shell:

```bash
python -m pip install certifi
export SSL_CERT_FILE="$(python -m certifi)"
zero-paper-api --journal .zero/decisions.jsonl --hyperliquid-live-prices
```

This still cannot place exchange orders. If live market data is unavailable or a
symbol is missing from Hyperliquid `allMids`, paper execution fails closed
instead of silently using fixture prices.
Expand Down