mirror of
https://github.com/saymrwulf/alpha-arena.git
synced 2026-05-31 22:55:19 +00:00
- Add MACOS_APP_MANUAL.md reference to docs/index.md - Streamline QUICKSTART.md macOS section (reference full manual) - Update USER_MANUAL.md Quick Start to use ./alpha workflow - Clarify that python cli.py is for advanced usage - Fix venv naming consistency (.venv throughout)
3.1 KiB
3.1 KiB
Alpha Arena Documentation
Welcome to Alpha Arena. This guide helps you find the right documentation for your needs.
Quick Navigation
Just want to run it?
../QUICKSTART.md - Daily commands, start/stop, basic troubleshooting
Using the web interface?
WEB_APP_MANUAL.md - Complete web UI guide with screenshots and workflows
Using the macOS menu bar app?
MACOS_APP_MANUAL.md - Native SwiftUI app for menu bar control
Need the full reference?
USER_MANUAL.md - CLI commands, multi-agent system, strategies, API reference
Running in production?
OPERATIONAL_MANUAL.md - Deployment, monitoring, backup, security
Writing or running tests?
TESTING.md - Test structure, fixtures, writing tests
Documentation Overview
| Document | Audience | Content |
|---|---|---|
| QUICKSTART.md | Everyone | 5-minute guide, daily commands |
| WEB_APP_MANUAL.md | Operators | Web interface, dashboards, controls |
| MACOS_APP_MANUAL.md | macOS users | Native menu bar app |
| USER_MANUAL.md | Developers | Full CLI, agents, strategies, API |
| OPERATIONAL_MANUAL.md | DevOps | Deployment, monitoring, security |
| TESTING.md | Developers | Test suite, fixtures, patterns |
Learning Path
Beginner
- Read ../QUICKSTART.md - Get running
- Explore WEB_APP_MANUAL.md - Use the web UI
- Or try MACOS_APP_MANUAL.md - Native menu bar app
- Try simulation mode before live trading
Intermediate
- Study USER_MANUAL.md Sections 6-10 - Agents, strategies, risk
- Learn technical indicators (Section 11)
- Understand memory system (Section 14)
Advanced
- Review OPERATIONAL_MANUAL.md - Production deployment
- Customize strategies via config
- Integrate with other systems via API
Quick Reference
Start the System
./alpha start # Start server
./alpha open # Open web UI
Stop the System
./alpha stop # Graceful shutdown
Check Status
./alpha status # Is it running?
./alpha logs # What's happening?
Run Tests
./alpha test # All tests
./scripts/test.sh # More options
Key Concepts
| Concept | What it means |
|---|---|
| Multi-Agent | Four AI agents (Research, Risk, Execution, Reflection) collaborate |
| Kelly Criterion | Mathematical formula for optimal position sizing |
| Kill Switch | Emergency stop all trading |
| Simulation Mode | Paper trading, no real money |
| Edge | Your expected advantage over market price |
Getting Help
- Check the troubleshooting section in ../QUICKSTART.md
- Review logs:
./alpha logs - Run diagnostics:
./scripts/check.sh - Search the relevant manual for your issue