## Project Structure ```text Polymarket-tra/ ├── 220Breakout/ │ ├── MT5 trade report/ │ │ ├── metrics_graphs.png │ │ ├── ReportTester-263254895(this)-holding.png │ │ ├── ReportTester-263254895(this)-hst.png │ │ ├── ReportTester-263254895(this)-mfemae.png │ │ ├── ReportTester-263254895(this).html │ │ ├── ReportTester-263254895(this).png │ │ └── ReportTester-263254895(this).xlsx │ ├── 220Breakout_Analysis.csv │ ├── report.md │ └── strategy.md ├── md2pdf_workspace/ │ ├── input/ │ │ └── drop the csv file here │ ├── output/ │ │ └── the output pdf goes here │ ├── main.py │ ├── requirements.txt │ └── steps.md ├── output/ ├── polymarket-trader/ │ ├── backend/ │ │ ├── cmd/ │ │ │ └── server/ │ │ │ ├── main.go │ │ │ └── main_test.go │ │ ├── internal/ │ │ │ ├── adapters/ │ │ │ │ └── polymarket/ │ │ │ │ ├── client.go │ │ │ │ └── websocket.go │ │ │ ├── api/ │ │ │ │ ├── handlers.go │ │ │ │ └── router.go │ │ │ ├── config/ │ │ │ │ └── config.go │ │ │ ├── core/ │ │ │ │ ├── analytics.go │ │ │ │ ├── copy_engine.go │ │ │ │ └── trader_discovery.go │ │ │ └── models/ │ │ │ └── models.go │ │ ├── .env.example │ │ ├── go.mod │ │ ├── go.sum │ │ ├── server.exe │ │ └── server.exe~ │ ├── frontend/ │ │ ├── public/ │ │ │ └── vite.svg │ │ ├── src/ │ │ │ ├── assets/ │ │ │ │ └── react.svg │ │ │ ├── components/ │ │ │ │ ├── ui/ │ │ │ │ │ ├── avatar.tsx │ │ │ │ │ ├── badge.tsx │ │ │ │ │ ├── button.tsx │ │ │ │ │ ├── card.tsx │ │ │ │ │ ├── dialog.tsx │ │ │ │ │ ├── input.tsx │ │ │ │ │ ├── label.tsx │ │ │ │ │ ├── scroll-area.tsx │ │ │ │ │ ├── table.tsx │ │ │ │ │ └── tabs.tsx │ │ │ │ ├── ActivePositions.tsx │ │ │ │ ├── BotChat.tsx │ │ │ │ └── CopyConfigDialog.tsx │ │ │ ├── lib/ │ │ │ │ └── utils.ts │ │ │ ├── test/ │ │ │ │ └── setup.ts │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── index.css │ │ │ └── main.tsx │ │ ├── .gitignore │ │ ├── components.json │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── README.md │ │ ├── tailwind.config.js │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── .gitignore │ └── docker-compose.yml ├── .gitattributes ├── LICENSE ├── README.md └── TECHSTACK.md ```