File size: 1,450 Bytes
d8bad25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
## Project Structure

```text

GeminiFlash-Trader/

β”œβ”€β”€ backend/

β”‚   β”œβ”€β”€ .env.example

β”‚   β”œβ”€β”€ agent.py

β”‚   β”œβ”€β”€ main.py

β”‚   β”œβ”€β”€ models.py

β”‚   β”œβ”€β”€ mt5_mcp.py

β”‚   β”œβ”€β”€ requirements.txt

β”‚   └── ws_manager.py

β”œβ”€β”€ frontend_react/

β”‚   β”œβ”€β”€ dist/

β”‚   β”‚   β”œβ”€β”€ assets/

β”‚   β”‚   β”‚   β”œβ”€β”€ index-BBLjpDlg.js

β”‚   β”‚   β”‚   └── index-KlXNi27O.css

β”‚   β”‚   β”œβ”€β”€ index.html

β”‚   β”‚   └── vite.svg

β”‚   β”œβ”€β”€ public/

β”‚   β”‚   └── vite.svg

β”‚   β”œβ”€β”€ src/

β”‚   β”‚   β”œβ”€β”€ assets/

β”‚   β”‚   β”‚   └── react.svg

β”‚   β”‚   β”œβ”€β”€ components/

β”‚   β”‚   β”‚   β”œβ”€β”€ AccountBar.jsx

β”‚   β”‚   β”‚   β”œβ”€β”€ CandlestickChart.jsx

β”‚   β”‚   β”‚   β”œβ”€β”€ PositionPanel.jsx

β”‚   β”‚   β”‚   β”œβ”€β”€ ReasoningSidebar.jsx

β”‚   β”‚   β”‚   └── TradeControls.jsx

β”‚   β”‚   β”œβ”€β”€ lib/

β”‚   β”‚   β”‚   └── useWebSocket.js

β”‚   β”‚   β”œβ”€β”€ App.css

β”‚   β”‚   β”œβ”€β”€ App.jsx

β”‚   β”‚   β”œβ”€β”€ index.css

β”‚   β”‚   └── main.jsx

β”‚   β”œβ”€β”€ .gitignore

β”‚   β”œβ”€β”€ eslint.config.js

β”‚   β”œβ”€β”€ index.html

β”‚   β”œβ”€β”€ package-lock.json

β”‚   β”œβ”€β”€ package.json

β”‚   └── vite.config.js

β”œβ”€β”€ .gitignore

β”œβ”€β”€ LICENSE

β”œβ”€β”€ README.md

β”œβ”€β”€ TECHSTACK.md

└── verify_strict_mode.py

```