# Virtual Energy Trading App ## Project Structure ``` /client # React Frontend /server # Python Backend /tests # Tests if I ever get to them ``` ## Backend ### FastAPI Server #### Market Data Service * Fetch from GridStatus API * Real-time prices * Day-ahead market prices * Load/demand data * API Endpoints * `GET /market/day-ahead` * `GET /market/real-time` * `GET /market/load` #### Bid Management * API Endpoints * `POST /bids` * `GET /bids` * `DELETE /bids/{bid_id}` #### Profit et Loss Simulation * API Endpoints * `GET /trader/pnl`