Polymarket-tra / STRUCTURE.md
algorembrant's picture
Upload 66 files
ed5e325 verified
## 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
```