Metadata-Version: 2.4
Name: mt5-bridge
Version: 1.1.2
Summary: MT5 Bridge API - REST API and CLI for MetaTrader5
Project-URL: Homepage, https://github.com/akivajp/mt5-bridge
Project-URL: Repository, https://github.com/akivajp/mt5-bridge
Author-email: Akiva Miura <akiva.miura@gmail.com>
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: fastapi>=0.110.0
Requires-Dist: fastmcp>=0.4.1
Requires-Dist: httpx>=0.27.0
Requires-Dist: metatrader5>=5.0.0; sys_platform == 'win32'
Requires-Dist: pandas>=2.0.0
Requires-Dist: pydantic>=2.6.0
Requires-Dist: uvicorn[standard]>=0.29.0
Description-Content-Type: text/markdown

# MT5 Bridge API

## Overview
`mt5-bridge` is a FastAPI service and CLI tool that mediates market data access and order execution between a MetaTrader 5 terminal and external applications. 

- **Server**: Runs on Windows (where MT5 is installed) and exposes a REST API.
- **Client**: Runs on any platform (Windows, Linux, macOS) and communicates with the Server to fetch data or execute trades.

## Prerequisites
- Python 3.11+
- **Server Mode**: Windows environment with MetaTrader 5 terminal installed.
- **Client Mode**: Any OS.

## Installation

### From PyPI (Recommended)

You can install `mt5-bridge` directly from PyPI:

```bash
pip install mt5-bridge
```

Once installed, you can run the `mt5-bridge` command directly.

### From Source (Development)

This project uses [uv](https://github.com/astral-sh/uv) for package management.

```bash
# Install dependencies
uv sync
```

On Linux/macOS, the `MetaTrader5` package will be skipped automatically, allowing you to use the client functionality without issues.

## Usage

The package installs a CLI command `mt5-bridge`.

### 1. Start the Server (Windows Only)

On your Windows machine with MT5:

```powershell
# Default (localhost:8000)
uv run mt5-bridge server

# Custom host/port
uv run mt5-bridge server --host 0.0.0.0 --port 8000
```

> **Note**: If you are using WSL, please checkout this repository on the **Windows file system** (e.g., `C:\Work\mt5-bridge`) and run the command from PowerShell/Command Prompt. Running Windows Python directly against a directory inside WSL (UNC path like `\\wsl.localhost\Ubuntu\...`) often causes `DLL load failed` errors with libraries like NumPy.


Additional options:
- `--mt5-path "C:\Path\To\terminal64.exe"`: proper initialization
- `--no-utc`: Disable Server Time -> UTC conversion

### 2. Use the Client (Any Platform)

From another machine (or the same one), use the client command to interact with the server.

```bash
# Check connection health
uv run mt5-bridge client --url http://192.168.1.10:8000 health

# Get historical rates (M1, last 1000 bars) for XAUUSD
uv run mt5-bridge client --url http://192.168.1.10:8000 rates XAUUSD

# Get latest tick
uv run mt5-bridge client --url http://192.168.1.10:8000 tick XAUUSD

# List open positions
uv run mt5-bridge client --url http://192.168.1.10:8000 positions
```

### JSON API

You can also access the API directly via generic HTTP clients (curl, Postman, specific libraries).

- `GET /health`
- `GET /rates/{symbol}?timeframe=M1&count=1000`
- `GET /tick/{symbol}`
- `GET /positions`
- `POST /order`
- `POST /close`
- `POST /modify`

## Architecture
- `mt5_bridge/main.py`: CLI entry point and FastAPI server definition.
- `mt5_bridge/mt5_handler.py`: Wrapper for MetaTrader5 package (guarded imports).
- `mt5_bridge/client.py`: HTTP client implementation.

## MCP (Copilot CLI) Integration
- Purpose: expose the MT5 Bridge API to Copilot CLI (MCP).
- Run MCP server:
  - `python mt5_bridge/mcp_server.py --api-base http://localhost:8000`

## License
MIT License.
