mt5-bridge
星标18
分支7
更新时间2026年2月17日 04:45
A skill to interact with MetaTrader 5 running on the Windows host from OpenClaw (WSL).
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
3 个文件SKILL.md
readonly菜单
A skill to interact with MetaTrader 5 running on the Windows host from OpenClaw (WSL).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | MT5 Bridge |
| description | A skill to interact with MetaTrader 5 running on the Windows host from OpenClaw (WSL). |
This skill allows OpenClaw to control MetaTrader 5.
mt5_server.py must be running.mt5_client.py script (included in this skill) is used to communicate.You can use the mt5_client.py script to perform actions.
The mt5_client.py module exposes these helper functions for easy data retrieval:
get_account_dict(): Returns account details (Balance, Equity, etc).get_positions_list(): Returns list of current open positions.get_history_orders(hours=24): Returns list of orders from last N hours.get_history_deals(hours=24): Returns list of deals from last N hours.import mt5_client
history = mt5_client.get_history_orders(24)
print(history)