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

```text

SUM3-Trading-Terminal/

β”œβ”€β”€ gmp-terminal/

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

β”‚   β”‚   β”œβ”€β”€ app.rs

β”‚   β”‚   β”œβ”€β”€ gmp_engine.rs

β”‚   β”‚   β”œβ”€β”€ main.rs

β”‚   β”‚   β”œβ”€β”€ tab_time.rs

β”‚   β”‚   β”œβ”€β”€ tab_trade.rs

β”‚   β”‚   β”œβ”€β”€ timeframe.rs

β”‚   β”‚   β”œβ”€β”€ trading_panel.rs

β”‚   β”‚   └── zmq_bridge.rs

β”‚   β”œβ”€β”€ Cargo.lock

β”‚   └── Cargo.toml

β”œβ”€β”€ mBA-GMP.v3/

β”‚   β”œβ”€β”€ generate_profiles.py_output/

β”‚   β”‚   β”œβ”€β”€ cmp_profile.csv

β”‚   β”‚   β”œβ”€β”€ datapoints.csv

β”‚   β”‚   β”œβ”€β”€ fig_cmp_profile.png

β”‚   β”‚   β”œβ”€β”€ fig_cmp_vs_gmp.png

β”‚   β”‚   β”œβ”€β”€ fig_combined_3panel.png

β”‚   β”‚   β”œβ”€β”€ fig_gmp_profile.png

β”‚   β”‚   β”œβ”€β”€ fig_price_scatter.png

β”‚   β”‚   β”œβ”€β”€ fig_updown_footprint.png

β”‚   β”‚   β”œβ”€β”€ gmp_profile.csv

β”‚   β”‚   β”œβ”€β”€ raw_draft_of_concept.png

β”‚   β”‚   └── updown_profile.csv

β”‚   └── generate_profiles.py

β”œβ”€β”€ SUM3API/

β”‚   β”œβ”€β”€ MQL5/

β”‚   β”‚   β”œβ”€β”€ Experts/

β”‚   β”‚   β”‚   └── ZmqPublisher.mq5

β”‚   β”‚   β”œβ”€β”€ Include/

β”‚   β”‚   β”‚   └── Zmq/

β”‚   β”‚   β”‚       └── Zmq.mqh

β”‚   β”‚   └── Libraries/

β”‚   β”‚       β”œβ”€β”€ libsodium.dll

β”‚   β”‚       └── libzmq.dll

β”‚   β”œβ”€β”€ Rustmt5-chart/

β”‚   β”‚   β”œβ”€β”€ output/

β”‚   β”‚   β”‚   β”œβ”€β”€ History_XAUUSDc_H1_OHLC_ID0002_20260126_135823.csv

β”‚   β”‚   β”‚   β”œβ”€β”€ History_XAUUSDc_H1_TICKS_ID0001_20260126_140825.csv

β”‚   β”‚   β”‚   └── Live_XAUUSDc_ID0001_20260126_135811.csv

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

β”‚   β”‚   β”‚   └── main.rs

β”‚   β”‚   β”œβ”€β”€ Cargo.lock

β”‚   β”‚   └── Cargo.toml

β”‚   └── LICENSE

β”œβ”€β”€ LICENSE

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

└── TECHSTACK.md

```