I run a custom HTML/CSS/JS site and want visitors to see my live activity on GMX. What I need is a Python script that connects to the GMX APIs, fetches my account data in real time, and feeds it to the front end as dynamic charts and graphs rather than plain text. The dashboard must always show: • Current position (long or short) • Entry and exit prices for every trade • Live and cumulative ROI • Leverage, number of open trades, and my win/loss count How it should work The Python service polls (or preferably subscribes via WebSocket) to GMX, stores the latest snapshot in memory, then serves a lightweight JSON or WebSocket endpoint. On the browser side, you’ll wire that feed to a charting library such as Chart.js or ApexCharts so the figures update automatically without a page refresh. All code has to drop straight into my existing static site—no backend framework or CMS involved. Deliverables 1. Clean, well-commented Python script with configuration for API keys and update frequency 2. HTML/JS fragment that renders the live charts and can be pasted into my current page 3. Brief README so I can deploy, run, and troubleshoot the integration on my server Acceptance criteria • Dashboard values match the numbers in my GMX account with <10 s delay • Charts refresh smoothly and responsively on new data • No hard page reloads and no excessive API calls that risk rate limits If you’ve built similar crypto or DeFi dashboards, let me know—I’m ready to get this live as soon as possible.