## 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 ```