File size: 1,164 Bytes
c99df4c | 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 | ## Project Structure
```text
mBA-Terminal/
├── images/
│ ├── filled_ticks_4panel.png
│ └── raw_ticks_4panel.png
├── output/
│ ├── filled_ask_XAUUSDc_20260212.csv
│ ├── filled_bid_XAUUSDc_20260212.csv
│ └── raw_ticks_XAUUSDc_20260212.csv
├── Python/
│ ├── mt5_filled_ticks.py
│ └── mt5_raw_ticks.py
├── scripts/
│ └── debug_mt5.py
├── src/
│ ├── core/
│ │ ├── data_worker.py
│ │ ├── market_profile.py
│ │ └── mt5_interface.py
│ ├── ui/
│ │ ├── chart_widget.py
│ │ ├── control_panel.py
│ │ └── main_window.py
│ ├── config.py
│ └── main.py
├── tests/
│ ├── test_interactive_chart.py
│ ├── test_logic.py
│ ├── test_profile_logic.py
│ └── verify_levels.py
├── .gitattributes
├── .gitignore
├── IDEA.md
├── LICENSE
├── market_profile_paper.tex
├── README.md
├── requirements.txt
└── TECHSTACK.md
```
|