Use it for free here:
Trade Republic PDF → CSV / Excel / JSON Converter
Open-source browser tool that converts Trade Republic account statements (PDF) into structured CSV, Excel, and JSON files. Runs entirely locally in the browser—no trackers, no payments, no SaaS backend.
- PDF parsing for the "Umsatzübersicht" and interest sections using the latest parser from the original project.
- In-browser analysis with progress feedback and sanity checks on balances.
- Export buttons for CSV, XLSX (via SheetJS), and JSON.
- Optional charts and trading P&L views rendered with Chart.js.
- Clone the repository:
git clone https://github.com/your-account/Trade-Republic-CSV-Excel.git cd Trade-Republic-CSV-Excel - Serve the project locally (any static file server works). For example:
npx serve . - Open
http://localhost:3000(or the port shown by your server) and select a Trade Republic PDF.
- All client-side code lives in
js/. js/parser.jsis kept reusable so you can import it elsewhere if needed.- Styles rely on Tailwind via CDN plus
styles.cssfor custom tweaks.
- Add automated tests using PDF fixtures.
- Provide language-specific parser overrides.
- Offer optional integrations via plug-ins instead of hard-coded adapters.