feat: brand UI with real APEX logo + auto-running showcase demo

UI:
- Embed the real APEX logo PNG (transparent mark) in dashboard sidebar,
  cmd-header, landing nav, and landing hero (replaces SVG approximations).
- Add favicon.png across all six templates.
- Nudge color palette to brand cyan→blue→purple gradient and silver-white
  wordmark; word-by-word coloring on the cmd-header tagline.
- Drop-shadow glow on logo marks tuned to the brand-blue.

Demo:
- python -m demo.run_demo now defaults to an auto-running showcase: opens
  the dashboard, kicks off a ~3-4 min optimization that exercises every
  phase, and lands on a verdict modal — no manual setup needed.
- Tight per-iteration targets so Phase 2 actually iterates (visible AI loop).
- Skip per-run AI analysis during Phase 1 exploration via APEX_DEMO_SKIP_PHASE1_AI=1
  to keep total runtime down without losing the headline AI loop in Phase 2.
- --quick flag opts back to the original fast/manual flow.
- --loop auto-restarts for unattended screen recording.

Docs:
- README + SUBMISSION updated to describe the new auto-running default.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
LEGSTECH Optimizer
2026-04-25 23:34:25 +00:00
committed by LEGTECH
co-authored by Claude Opus 4.7
parent 96680cde63
commit 33e670aa4c
14 changed files with 295 additions and 127 deletions
+19 -5
View File
@@ -117,16 +117,30 @@ hit **Start**, and watch the AI think.
### Demo mode (no MT5 required)
Don't have MT5 installed? Run the offline demo that feeds synthetic backtest results
through the same AI loop and dashboard:
Don't have MT5 installed? The offline demo feeds synthetic backtest results
through the same AI loop and dashboard. **It auto-starts** — open the link
the script prints, sit back, and watch APEX think:
```bash
python -m demo.run_demo
```
This is the path to use if you're a hackathon judge — you'll see the full thinking feed,
parameterchange panel, validation phase, and verdict screen without needing a Windows
machine with MT5.
That's it. The browser opens to the live dashboard, an optimization kicks off
automatically, and you'll see all three phases play out over ~3-4 minutes:
exploration → AI iteration with reasoning streaming live → out-of-sample +
sensitivity validation → final verdict. Every panel populates so you can see
exactly what the system does.
If you'd rather drive it yourself (configure your own EA, dates, targets), use:
```bash
python -m demo.run_demo --quick # boots the server, you click "New Run"
python -m demo.run_demo --loop # auto-restart between runs (unattended recording)
```
This is the path to use if you're a hackathon judge — you'll see the full
thinking feed, parameter-change panel, validation phase, and verdict screen
without needing a Windows machine with MT5.
---