Supports MT5 and forex trading.

Signed-off-by: TIANHE <TIANHE@GMAIL.COM>
This commit is contained in:
TIANHE
2026-01-13 04:10:05 +08:00
parent a3a4f75bb6
commit 7053aefc33
3 changed files with 13 additions and 2 deletions
+4 -1
View File
@@ -29,7 +29,10 @@ jobs:
working-directory: ./backend_api_python
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Install dependencies, excluding Windows-only packages (MetaTrader5)
# MetaTrader5 is Windows-only and not available on Linux, so we filter it out
grep -v "MetaTrader5" requirements.txt > /tmp/requirements_ci.txt
pip install -r /tmp/requirements_ci.txt
# Install dependencies to verify they are installable and enable import checks.
- name: Python syntax check