File size: 3,919 Bytes
ed5e325
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
## 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

```