# Hetz.online

Real-time **Polymarket + Elon Musk Tweet Intelligence** dashboard with automated trading logic.

A full-stack application combining a high-performance Rust backend with a modern Streamlit Python frontend.

---

## 🚀 Project Structure

```bash
hetz.online/
├── Cargo.toml              # Rust backend (main application)
├── src/                    # Rust source code
│   ├── main.rs
│   ├── lib.rs
│   ├── trading.rs
│   ├── rules.rs
│   ├── surfaces.rs
│   └── ... (real-time WS, rebalancer, metrics, etc.)
├── frontend/               # Python + Streamlit frontend
│   ├── app.py
│   ├── components/
│   ├── rules/
│   ├── data_layer/
│   ├── requirements.txt
│   └── pyproject.toml
├── .gitignore
├── Dockerfile
└── README.md