🤖 AI-Agent Friendly | Professional-grade MetaTrader 5 Expert Advisor with intelligent order splitting, automatic trailing stop loss, and REST API integration for any MT5 symbol (Gold/XAUUSD and Silver/XAGUSD included as examples). Ships with a Model Context Protocol (MCP) server for native Claude integration and other AI agents.
This system is designed for seamless integration with AI agents like Claude AI, ChatGPT, and other LLMs:
- 🔌 REST API First - Simple JSON endpoints that AI agents can easily call
- 📝 Natural Language Processing - AI agents can parse trading signals and convert to API calls
- 🔄 Stateless Design - Each API call is independent, perfect for AI workflows
- 📊 Structured Responses - JSON responses that AI can parse and act upon
- 🛡️ Safe Defaults - Smart order type detection prevents common AI mistakes
- 📚 Well-Documented - Complete API docs for AI agent training/prompts
Example AI Agent Workflow:
User: "Buy Gold at 4100 with 30-pip TPs"
AI Agent: Parses signal → Calls REST API → Monitors response
System: Splits order → Manages positions → Returns status
- ✅ Automatic Order Splitting - Splits a single order into 1-10 positions with configurable volume distribution (defaults to 60/10/10/10/10 for 5 levels)
- ✅ Smart Trailing Stop Loss - Automatically moves SL to breakeven when TP2 is reached
- ✅ Dual TP Structures - Supports both 15-pip and 30-pip initial TP configurations
- ✅ Safe Shutdown Mode - Protects positions when EA is offline
- ✅ REST API Integration - FastAPI server for external signal processing
- ✅ MCP Server - Native Model Context Protocol server so Claude Code / Claude Desktop can inspect and control MT5 directly
- ✅ TCP Socket Communication - High-performance bidirectional communication
- ✅ Order Type Safety - Validates STOP/LIMIT (and SL/TP sides) against the live market and rejects wrong-side orders instead of silently reinterpreting your intent
- ✅ Position Recovery - Persists group state to disk and rebuilds tracking on restart, reconciling against live orders (survives broker comment rewrites)
- ✅ Any-Symbol Support - Works on any MT5 symbol; volumes snap to the broker's lot step and prices normalize to the symbol's digits (Gold/XAUUSD and Silver/XAGUSD are examples, not limits)
- ✅ Risk Management - Daily loss limits, max positions, spread checks
- ✅ AI Agent Ready - Perfect for Claude AI, ChatGPT, and automation workflows
- Quick Start
- Architecture
- Split Order System
- Trailing Stop Logic
- Safe Shutdown Mode
- API Documentation
- MCP Server
- Configuration
- Installation
- Usage Examples
- Troubleshooting
- FAQ
- License
- MetaTrader 5 terminal
- Python 3.8 or higher
- Basic understanding of Forex/CFD trading
pip install -r requirements.txtpython server.pyThe server will start on:
- REST API: http://localhost:8080
- TCP Server: 127.0.0.1:5555
- Open MetaEditor (F4 in MT5)
- Compile
bulk-add-signals.mq5(F7) - Drag EA onto any chart
- Enable "Allow DLL imports" in EA settings
- Check Experts tab for connection confirmation
curl -X POST http://localhost:8080/order \
-H "Content-Type: application/json" \
-d '{
"symbol": "XAUUSD",
"order_type": "BUY_STOP",
"price": 4100.0,
"sl": 4096.0,
"tp_levels": [4103.0, 4106.0, 4109.0, 4112.0, 4115.0],
"lot_size": 0.1
}'┌─────────────┐ REST API ┌──────────────┐ TCP Socket ┌─────────────┐
│ External │ ─────────────────> │ Python │ ──────────────────> │ MT5 EA │
│ Client │ POST /order │ FastAPI + │ JSON Commands │ (Client) │
│ (Claude AI)│ │ TCP Server │ │ │
└─────────────┘ <───────────────── └──────────────┘ <────────────────── └─────────────┘
JSON Response :5555 Response Execute
(ticket #) Queue Trade
- External client sends REST API request to FastAPI (port 8080)
- Python server queues command and waits for MT5 connection
- MT5 EA connects via TCP socket every 500ms (configurable)
- Server sends queued command as JSON
- EA parses, validates, and executes trade
- EA sends response back through socket
- Server returns response to original API caller
Traditional single-TP orders force you to choose between:
- Taking profit early (leaving money on the table)
- Holding for larger profit (risking reversal)
Solution: Split one order into 1 to 10 positions, each with its own TP!
You choose how many TP levels to send (1-10). If you don't send a volume_split,
the EA/server apply a default weighting:
- 1 level → the whole lot goes to that single TP (
[1.0]). - N ≥ 2 levels → TP1 gets 60% and the remaining 40% is shared evenly
across the other
N-1levels. For 5 levels this reproduces the original 60/10/10/10/10 distribution exactly, so existing 5-level clients are unchanged.
When you place 0.1 lot with the default 5-level split, the EA creates 5 separate orders:
| Order | Volume | % of Total | Take Profit | Purpose |
|---|---|---|---|---|
| TP1 | 0.06 | 60% | 15 pips | Secure majority profit quickly |
| TP2 | 0.01 | 10% | 45 pips | Trailing SL trigger point |
| TP3 | 0.01 | 10% | 75 pips | Medium-term profit |
| TP4 | 0.01 | 10% | 105 pips | Extended profit |
| TP5 | 0.01 | 10% | 135 pips | Maximum profit target |
Send an optional volume_split array (one fraction per TP level) to override the
default. The rules are validated on both the server (422 on failure) and the EA:
- Same length as
tp_levels. - Each entry ≥ 0, with at least one entry > 0.
- Sum ≈ 1.0 (accepted within
[0.99, 1.01]). - A
0entry skips that level — no order is placed for it. This lets you keep a fixed 5-level TP ladder but only actually fill, say, TP1 and TP3.
Example — a 3-level 50/30/20 split:
"tp_levels": [4103.0, 4106.0, 4109.0],
"volume_split": [0.5, 0.3, 0.2]Each per-level volume is lot_size × ratio, floored down to the broker's lot
step (SYMBOL_VOLUME_STEP). Any rounding leftover is added back to the level with
the largest ratio so the totals still add up. If a non-zero level would floor to
below the broker's minimum lot (SYMBOL_VOLUME_MIN), the whole order is
rejected with a message naming the offending level and the smallest lot_size
that would make it viable — the EA never silently drops a leg. Entry, SL, and every
TP price are normalized to the symbol's digit precision before the order is sent.
Option 1: Standard Structure (15-pip initial)
- TP1: 15 pips
- TP2: 45 pips (+30)
- TP3: 75 pips (+30)
- TP4: 105 pips (+30)
- TP5: 135 pips (+30)
Option 2: Aggressive Structure (30-pip initial)
- TP1: 30 pips
- TP2: 60 pips (+30)
- TP3: 90 pips (+30)
- TP4: 120 pips (+30)
- TP5: 150 pips (+30)
Because you send absolute TP/SL/entry prices (not pip offsets), the system is not tied to any particular instrument. The EA reads the symbol's own volume step, minimum lot, and digit precision from MT5, so the same request format works on FX pairs, metals, indices, or crypto CFDs — whatever your broker exposes.
The pip figures used throughout these examples are just conveniences for the two symbols the project was first built around:
- Gold (XAUUSD): 1 pip ≈ 0.10 (e.g., 2650.00 → 2651.00)
- Silver (XAGUSD): 1 pip ≈ 0.01 (e.g., 29.50 → 29.51)
When TP2 closes (45 pips profit):
- EA detects TP2 position is closed
- Automatically moves SL to your actual TP1 price (the price you sent, not a fixed pip offset)
- Remaining 30% of position (TP3, TP4, TP5) is now risk-free
- Even if market reverses, you keep 15 pips profit on remaining positions
Entry: Sell Stop @ 50.051 (Silver) Initial SL: 50.101 (5 pips above entry)
Trade Progression:
Price drops to 49.901 → TP1 closes (0.06 lots, 60% profit = +15 pips)
Price drops to 49.601 → TP2 closes (0.01 lots, 10% profit = +45 pips)
→ EA MOVES SL to 49.901 for TP3/TP4/TP5
→ Position now RISK-FREE!
Price drops to 49.301 → TP3 closes (0.01 lots, protected, +75 pips)
Price drops to 49.001 → TP4 closes (0.01 lots, protected, +105 pips)
Price drops to 48.701 → TP5 closes (0.01 lots, protected, +135 pips)
If price reverses after TP2:
- Worst case: Remaining 30% closes at TP1 (49.901) = +15 pips
- You still profit on 60% at TP1 + 10% at TP2 + 30% at TP1
- Total locked profit: Better than breaking even!
When you close MT5 and the EA stops running:
- If TP2 gets hit while you're away, trailing SL won't activate
- TP3, TP4, TP5 remain at the original SL → risky!
- Market reversal could hit your SL instead of protecting profit
Before closing MT5, activate safe shutdown mode:
curl -X POST http://localhost:8080/safe-shutdown- Scans all order groups that haven't reached TP2 yet
- Modifies TP2, TP3, TP4, TP5 → all moved to TP2 price level
- Keeps TP1 unchanged (your quick profit)
- Works on both pending orders and open positions
Before Safe Shutdown:
TP1: 15 pips (0.06 lots, 60%)
TP2: 45 pips (0.01 lots, 10%)
TP3: 75 pips (0.01 lots, 10%)
TP4: 105 pips (0.01 lots, 10%)
TP5: 135 pips (0.01 lots, 10%)
After Safe Shutdown:
TP1: 15 pips (0.06 lots, 60%) ← unchanged
TP2: 45 pips (0.01 lots, 10%)
TP3: 45 pips (0.01 lots, 10%) ← moved to TP2!
TP4: 45 pips (0.01 lots, 10%) ← moved to TP2!
TP5: 45 pips (0.01 lots, 10%) ← moved to TP2!
✅ All remaining positions (40%) will close at maximum 45 pips ✅ No manual monitoring needed while away ✅ Safe to close MT5 and sleep/leave ✅ Guarantees minimum profit even if EA is offline
{
"success": true,
"message": "Safe shutdown applied",
"groups_modified": 3,
"pending_orders_modified": 12,
"open_positions_modified": 8,
"details": [
{"group": "XAUUSD_4065.000_1234567890", "modified": 4},
{"group": "XAUUSD_4053.000_1234567891", "modified": 4},
{"group": "XAUUSD_4012.000_1234567892", "modified": 4}
]
}http://localhost:8080
GET /health
Check if server is running.
Response:
{
"status": "healthy",
"tcp_host": "127.0.0.1",
"tcp_port": 5555
}POST /order
Place a new order with automatic splitting.
Request Body:
{
"symbol": "XAUUSD",
"order_type": "BUY_STOP",
"price": 4100.0,
"sl": 4096.0,
"tp_levels": [4103.0, 4106.0, 4109.0, 4112.0, 4115.0],
"lot_size": 0.1,
"deviation": 3,
"comment": "My Trade",
"magic_number": 20250117
}Parameters:
symbol(string): Any MT5 symbol your broker exposes (e.g. "XAUUSD", "XAGUSD", "EURUSD", "BTCUSD")order_type(string): "BUY_STOP", "SELL_STOP", "BUY_LIMIT", or "SELL_LIMIT". The price must be on the correct side of the market for the type (e.g. BUY_STOP above the ask); wrong-side requests are rejected with an explanatory message rather than converted.price(float): Entry pricesl(float): Stop loss pricetp_levels(array): 1 to 10 take-profit prices (must be on the correct side of entry)volume_split(array, optional): Fractions oflot_size, one per TP level. Same length astp_levels, each entry ≥ 0, at least one > 0, and they must sum to ~1.0 (within[0.99, 1.01]). A0entry skips that level. Omit to use the default 60/40 split (60/10/10/10/10 for 5 levels).lot_size(float): Total volume, split across the TP levels (floored to the broker's lot step; rejected if a non-zero leg would fall below the broker minimum)deviation(int, optional): Maximum price deviation in pipscomment(string, optional): Order commentmagic_number(int, optional): Magic number for identification
Response:
{
"success": true,
"message": "Order placed successfully",
"ticket": 171645717
}Example — custom 3-level split (50/30/20):
curl -X POST http://localhost:8080/order \
-H "Content-Type: application/json" \
-d '{
"symbol": "EURUSD",
"order_type": "BUY_LIMIT",
"price": 1.0850,
"sl": 1.0820,
"tp_levels": [1.0880, 1.0910, 1.0940],
"volume_split": [0.5, 0.3, 0.2],
"lot_size": 0.3
}'This places 0.15 lots @ 1.0880, 0.09 lots @ 1.0910, and 0.06 lots @ 1.0940
(subject to the broker's lot step). Validation failures — bad length, wrong sum,
negative or all-zero splits, more than 10 levels — return 422 with a message
naming the rule that was broken.
GET /positions
Get all open positions.
Response:
{
"success": true,
"positions": [
{
"ticket": 123456,
"symbol": "XAUUSD",
"type": "BUY",
"volume": 0.06,
"price_open": 4100.0,
"sl": 4096.0,
"tp": 4103.0,
"profit": 18.50
}
]
}GET /orders
Get all pending orders.
Response:
{
"success": true,
"orders": [
{
"ticket": 171645717,
"symbol": "XAUUSD",
"type": "BUY_STOP",
"volume": 0.06,
"price": 4100.0,
"sl": 4096.0,
"tp": 4103.0
}
]
}DELETE /order/{ticket}
Cancel a pending order.
Response:
{
"success": true,
"message": "Order deleted",
"ticket": 171645717
}DELETE /position/{ticket}
Close an open position.
Response:
{
"success": true,
"message": "Position closed",
"ticket": 123456
}GET /stats
Get account statistics and EA status.
Response:
{
"success": true,
"stats": {
"balance": 10000.00,
"equity": 10050.00,
"margin": 500.00,
"free_margin": 9550.00,
"profit": 50.00,
"total_positions": 5,
"total_orders": 15,
"tracked_groups": 3,
"magic_number": 20250117
}
}POST /safe-shutdown
Activate safe shutdown mode - consolidate all TPs to TP2 level.
Response:
{
"success": true,
"message": "Safe shutdown applied",
"groups_modified": 3,
"pending_orders_modified": 12,
"open_positions_modified": 8
}The repo ships an optional Model Context Protocol (MCP) server (mcp_server.py)
that wraps the REST bridge as tools an LLM client can call natively. With it,
Claude Code or Claude Desktop can list your positions, read account stats, and
(optionally) place and manage split orders — no manual curl required.
It talks to the same running server.py bridge over HTTP, so start the bridge
first (and point the MCP server at it if it isn't on the default URL).
pip install -r requirements-mcp.txt| Variable | Default | Description |
|---|---|---|
MT5_BRIDGE_URL |
http://127.0.0.1:8080 |
Base URL of the running server.py bridge |
MT5_API_KEY |
(unset) | Sent as X-API-Key on every request; set it to match the bridge's API_KEY |
MT5_MCP_ENABLE_TRADING |
(off) | Set to 1 or true to register the trading tools. Left off by default so a fresh install cannot move money. |
Read-only (always available):
list_positions— all open positions (filled legs of split orders)list_pending_orders— pending stop/limit legs price hasn't reached yetaccount_stats— balance, equity, margin, free margin, open profitbridge_health— check the bridge is up and whether auth is required
Trading (only when MT5_MCP_ENABLE_TRADING=1):
place_split_order— mirror ofPOST /order, includingvolume_splitclose_position— close an open position by ticketcancel_order— cancel a pending order by ticketsafe_shutdown— consolidate remaining TP legs to the TP2 level
Responses are the bridge's JSON passed straight through; connection/HTTP failures come back as short, readable messages instead of raw tracebacks.
claude mcp add mt5 \
--env MT5_BRIDGE_URL=http://127.0.0.1:8080 \
--env MT5_MCP_ENABLE_TRADING=1 \
-- python /path/to/mt5-trade-split-manager/mcp_server.pyDrop the MT5_MCP_ENABLE_TRADING line to keep the connection read-only. Add
--env MT5_API_KEY=your-secret if the bridge runs with API_KEY set.
Add an entry to your claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"mt5": {
"command": "python",
"args": ["/path/to/mt5-trade-split-manager/mcp_server.py"],
"env": {
"MT5_BRIDGE_URL": "http://127.0.0.1:8080",
"MT5_MCP_ENABLE_TRADING": "1"
}
}
}
}Restart Claude Desktop after editing. Omit MT5_MCP_ENABLE_TRADING for a
read-only connection, and add MT5_API_KEY under env if the bridge requires it.
⚠️ Enabling the trading tools lets the model place and close real orders. Keep it off unless you intend that, and always demo-test first.
{
"mt5": {
"zmq_port": 5555,
"default_lot_size": 0.1
},
"symbols": {
"gold": "XAUUSD",
"silver": "XAGUSD"
},
"risk_management": {
"max_daily_loss_percent": 5.0,
"max_positions": 10
}
}Configure in MT5 when attaching EA to chart:
| Parameter | Default | Description |
|---|---|---|
ServerHost |
"127.0.0.1" | Python server IP address |
ServerPort |
5555 | TCP server port |
MagicNumber |
20250117 | Unique identifier for EA orders |
SocketCheckIntervalMs |
500 | How often to check for commands (ms) |
MaxSpreadPips |
10 | Reject new orders when the live spread exceeds this (0 disables). 1 pip = 10 points on 5/3-digit symbols, 1 point otherwise — metals/indices may need a higher value. |
MaxPositions |
50 | Cap on this EA's open positions + pending orders combined |
MaxDailyLossPercent |
5.0 | Stop trading if the loss since broker midnight exceeds % (measured against equity) |
This API can place and close real trades, so it is locked down by default:
- Localhost only — the HTTP server binds to
127.0.0.1unless you setHOST=0.0.0.0. - Optional API key — set the
API_KEYenvironment variable and every trading endpoint (everything except/and/health) requires a matchingX-API-Keyheader:
API_KEY=your-secret HOST=0.0.0.0 python server.py
curl -X POST http://localhost:8080/order \
-H "X-API-Key: your-secret" -H "Content-Type: application/json" \
-d '{ ... }'If you expose the server beyond localhost (e.g. Docker with HOST=0.0.0.0) always set API_KEY. The server prints a warning if you don't.
- Clone the repository:
git clone https://github.com/yourusername/mt5-bulk-order-manager.git
cd mt5-bulk-order-manager- Install Python dependencies:
pip install -r requirements.txt- Copy MQL5 files to MT5:
cp bulk-add-signals.mq5 "~/MetaTrader 5/MQL5/Experts/"- Start the server:
python server.pydocker-compose up -dThe server will be available at http://localhost:8080
curl -X POST http://localhost:8080/order \
-H "Content-Type: application/json" \
-d '{
"symbol": "XAUUSD",
"order_type": "BUY_STOP",
"price": 4100.0,
"sl": 4096.0,
"tp_levels": [4103.0, 4106.0, 4109.0, 4112.0, 4115.0],
"lot_size": 0.1
}'This creates 5 orders:
- 0.06 lots @ TP 4103.0 (30 pips)
- 0.01 lots @ TP 4106.0 (60 pips)
- 0.01 lots @ TP 4109.0 (90 pips)
- 0.01 lots @ TP 4112.0 (120 pips)
- 0.01 lots @ TP 4115.0 (150 pips)
curl -X POST http://localhost:8080/order \
-H "Content-Type: application/json" \
-d '{
"symbol": "XAGUSD",
"order_type": "SELL_STOP",
"price": 29.50,
"sl": 29.65,
"tp_levels": [29.35, 29.05, 28.75, 28.45, 28.15],
"lot_size": 0.5
}'curl -X POST http://localhost:8080/order \
-H "Content-Type: application/json" \
-d '{
"symbol": "EURUSD",
"order_type": "BUY_LIMIT",
"price": 1.0850,
"sl": 1.0820,
"tp_levels": [1.0880, 1.0910, 1.0940],
"volume_split": [0.5, 0.3, 0.2],
"lot_size": 0.3
}'This creates 3 orders (volumes floored to the broker's lot step):
- 0.15 lots @ TP 1.0880 (50%)
- 0.09 lots @ TP 1.0910 (30%)
- 0.06 lots @ TP 1.0940 (20%)
curl http://localhost:8080/positionscurl -X POST http://localhost:8080/safe-shutdownSymptoms: EA shows "Not connected" in Experts tab
Solutions:
- Check Python server is running:
curl http://localhost:8080/health - Verify port 5555 is listening:
netstat -an | grep 5555 - Check firewall allows local connections
- Ensure "Allow DLL imports" is enabled in EA settings
- Check EA logs in MT5 Experts tab for error messages
Symptoms: All split orders fail immediately
Cause: The order type doesn't match the price's position relative to the market.
Solution: The EA validates this and returns a clear message instead of silently changing your order. Pick the type that matches your intent:
- Entry above market →
BUY_STOP(breakout) orSELL_LIMIT(fade) - Entry below market →
SELL_STOP(breakout) orBUY_LIMIT(dip-buy)
SL and TP prices must also be on the correct side of the entry, or the order is rejected. Recompile the EA with the latest code.
Symptoms: Server fails to start with "Address already in use"
Solution:
# Find and kill process using port 8080
lsof -ti:8080 | xargs kill -9
# Find and kill process using port 5555
lsof -ti:5555 | xargs kill -9
# Restart server
python server.pySymptoms: TP2 closes but SL doesn't move to TP1
Possible Causes:
- Orders placed manually instead of through the API (no tracked group)
- TP2's volume was set to
0in a customvolume_split(no TP2 order exists to trigger the move) - The group only has one or two levels (nothing beyond TP2 to trail)
Solution:
- Always place orders through the API so a group is tracked
- Keep a non-zero TP2 weight if you rely on the trailing trigger
- Group state now survives restarts (persisted to
MQL5/Files/), so a restart no longer loses tracking
Symptoms: Command succeeds but TPs not modified
Cause: EA not compiled with latest code
Solution:
- Open MetaEditor (F4)
- Open bulk-add-signals.mq5
- Press F7 to recompile
- Restart EA on chart
- Try safe shutdown command again
Q: Can I use this with other symbols besides Gold and Silver? A: Yes. You send absolute TP/SL/entry prices, and the EA reads each symbol's volume step, minimum lot, and digit precision directly from MT5, so any broker symbol works (FX pairs, metals, indices, crypto CFDs). XAUUSD/XAGUSD are just the examples this project started with.
Q: What happens if I restart MT5 while positions are open?
A: The EA persists each group's state (levels, TP prices, trailing status) to a per-account file in MQL5/Files/ and reloads it on startup, reconciling against your live orders and positions. This survives even if your broker rewrites order comments. Trailing SL still won't fire during the moments the EA is actually offline, but tracking is restored intact once it restarts.
Q: Can I change the volume distribution (60/10/10/10/10)?
A: Yes — send a volume_split array in the API request (see Split Order System). No code editing required; the 60/40 default is only applied when you omit it. You can also use 1-10 levels instead of exactly 5.
Q: Does this work on MT4? A: No, this is specifically designed for MT5. MT4 uses a different API and doesn't support the same socket operations.
Q: Can I run multiple EAs with different magic numbers? A: Yes, each EA instance can have a unique magic number. Configure it in the EA input parameters.
Q: Is there a web interface? A: Currently, the system uses a REST API. You can build a web frontend that calls the API endpoints.
Q: How do I backtest this EA? A: The EA uses socket communication which isn't available in Strategy Tester. For backtesting, you'd need to modify the code to use simulated data instead of TCP sockets.
Q: What's the minimum lot size?
A: Depends on your broker. Each split leg is floored to the broker's lot step (SYMBOL_VOLUME_STEP), and if a non-zero leg would land below the broker minimum (SYMBOL_VOLUME_MIN) the whole order is rejected with a message telling you the smallest lot_size that would make that level viable.
MIT License - see LICENSE file for details
Contributions welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This software is for educational purposes only. Trading forex and CFDs involves substantial risk of loss. Past performance is not indicative of future results. Always test on a demo account first.
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Documentation: Wiki
- Support for additional symbols (any MT5 symbol, broker-driven lot step & precision)
- Configurable 1-10 level splits with custom
volume_split - MCP server for native Claude Code / Claude Desktop integration
- Web-based dashboard for monitoring positions
- Telegram bot integration for alerts
- Advanced risk management presets
- Trade journal and analytics
- Multi-account support
- Built with FastAPI
- MetaTrader 5 by MetaQuotes
- Inspired by professional trading strategies
Made with ❤️ for algorithmic traders
Keywords: MetaTrader 5, MT5, Expert Advisor, EA, Gold Trading, XAUUSD, Silver Trading, XAGUSD, Forex Bot, Trading Bot, Algorithmic Trading, Automated Trading, Split Orders, Trailing Stop, Risk Management, FastAPI, Python Trading, MQL5, Trading API, REST API, Socket Trading, MCP, Model Context Protocol, Claude MCP, AI Trading Agent