File size: 31,286 Bytes
42cdcca | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 | # MQL5 ZeroMQ Wrapper Library
A comprehensive reusable MQL5 wrapper library for ZeroMQ socket operations, designed for real-time communication between MetaTrader 5 and external applications.
---
## Table of Contents
1. [Overview](#overview)
2. [Architecture](#architecture)
3. [Prerequisites and Installation](#prerequisites-and-installation)
4. [API Reference](#api-reference)
5. [Usage Guide](#usage-guide)
6. [Socket Patterns](#socket-patterns)
7. [Message Protocol](#message-protocol)
8. [Complete Examples](#complete-examples)
9. [Error Handling](#error-handling)
10. [Best Practices](#best-practices)
11. [Troubleshooting](#troubleshooting)
---
## Overview
This library provides a high-level MQL5 wrapper around the native ZeroMQ (libzmq) library, enabling MetaTrader 5 Expert Advisors and indicators to communicate with external applications via TCP sockets.
> [!NOTE]
> For the companion Rust client library, see [Rust-ZMQ Library for SUM3API](Rust-ZMQ%20Library%20for%20SUM3API.md).
### Key Features
- **Simple API**: Object-oriented wrapper class with intuitive methods
- **Multiple Socket Types**: Support for PUB, SUB, REQ, and REP patterns
- **Non-blocking Operations**: Configurable blocking/non-blocking send and receive
- **UTF-8 Support**: Automatic string encoding/decoding
- **Resource Management**: Automatic cleanup on destruction
### Supported Socket Types
| Constant | Value | Description |
|----------|-------|-------------|
| `ZMQ_PUB` | 1 | Publisher socket for broadcasting messages |
| `ZMQ_SUB` | 2 | Subscriber socket for receiving broadcasts |
| `ZMQ_REQ` | 3 | Request socket for request/reply pattern (client) |
| `ZMQ_REP` | 4 | Reply socket for request/reply pattern (server) |
---
## Architecture
### System Overview
```mermaid
flowchart LR
subgraph MT5["MetaTrader 5"]
EA["ZmqPublisher EA"]
CZmq["CZmq Wrapper"]
DLL["libzmq.dll"]
EA --> CZmq
CZmq --> DLL
end
subgraph Network["ZeroMQ TCP/IP"]
PUB["PUB Socket<br/>tcp://0.0.0.0:5555"]
REP["REP Socket<br/>tcp://0.0.0.0:5556"]
end
subgraph Client["External Client"]
SUB["SUB Socket"]
REQ["REQ Socket"]
APP["Application<br/>(Rust/Go/Java/C++)"]
SUB --> APP
REQ --> APP
end
DLL --> PUB
DLL --> REP
PUB -->|"Tick Data (JSON)"| SUB
REQ <-->|"Order Request/Response"| REP
```
### Communication Flow
```mermaid
sequenceDiagram
participant MT5 as MetaTrader 5
participant PUB as PUB Socket :5555
participant SUB as SUB Socket
participant Client as External Client
participant REQ as REQ Socket
participant REP as REP Socket :5556
Note over MT5,Client: Tick Data Publishing (PUB/SUB)
MT5->>PUB: OnTick() - Create JSON
PUB->>SUB: Broadcast tick data
SUB->>Client: Parse and display
Note over MT5,Client: Order Handling (REQ/REP)
Client->>REQ: Create order request
REQ->>REP: Send JSON request
REP->>MT5: Receive and parse
MT5->>MT5: Execute order
MT5->>REP: Create response
REP->>REQ: Send JSON response
REQ->>Client: Parse result
```
### Pattern Details
1. **Tick Data Publishing** (PUB/SUB Pattern)
- EA binds PUB socket to `tcp://0.0.0.0:5555`
- External client subscribes via SUB socket
- EA publishes tick data as JSON on every tick
2. **Order Handling** (REQ/REP Pattern)
- EA binds REP socket to `tcp://0.0.0.0:5556`
- External client sends order requests via REQ socket
- EA processes orders and sends responses
---
## Prerequisites and Installation
### Required Files
Place the following files in your MetaTrader 5 installation directory:
```
MQL5/
|-- Libraries/
| |-- libzmq.dll # ZeroMQ core library
| |-- libsodium.dll # Cryptographic dependency for libzmq
|
|-- Include/
| |-- Zmq/
| |-- Zmq.mqh # MQL5 wrapper class
|
|-- Experts/
|-- ZmqPublisher.mq5 # Example Expert Advisor
```
### Installation Steps
1. **Download ZeroMQ Libraries**
- Download `libzmq.dll` (v4.3.x or later) from [ZeroMQ releases](https://github.com/zeromq/libzmq/releases)
- Download `libsodium.dll` from [libsodium releases](https://github.com/jedisct1/libsodium/releases)
- Both DLLs must be the same architecture (x64 for 64-bit MT5)
2. **Copy Files**
```
Copy libzmq.dll --> MQL5/Libraries/
Copy libsodium.dll --> MQL5/Libraries/
Copy Zmq.mqh --> MQL5/Include/Zmq/
```
3. **Enable DLL Imports in MetaTrader 5**
- Go to `Tools > Options > Expert Advisors`
- Enable "Allow DLL imports"
- Disable "Allow DLL imports only for signed DLLs" (or sign the DLLs)
4. **Compile Your EA**
- Open MetaEditor
- Include the wrapper: `#include <Zmq/Zmq.mqh>`
- Compile your Expert Advisor
---
## API Reference
### Class: CZmq
The main wrapper class for ZeroMQ operations.
#### Constructor and Destructor
```cpp
CZmq()
```
Creates a new CZmq instance. Does not initialize any ZMQ resources.
```cpp
~CZmq()
```
Destructor. Automatically calls `Shutdown()` to clean up resources.
---
#### Init
```cpp
bool Init(int type)
```
Initializes the ZeroMQ context and creates a socket of the specified type.
**Parameters:**
| Name | Type | Description |
|------|------|-------------|
| `type` | `int` | Socket type: `ZMQ_PUB`, `ZMQ_SUB`, `ZMQ_REQ`, or `ZMQ_REP` |
**Returns:**
- `true` if initialization succeeded
- `false` if context or socket creation failed
**Example:**
```cpp
CZmq *publisher = new CZmq();
if(!publisher.Init(ZMQ_PUB)) {
Print("Failed to initialize ZMQ publisher");
return INIT_FAILED;
}
```
---
#### Bind
```cpp
bool Bind(string endpoint)
```
Binds the socket to a local endpoint. Typically used by server-side sockets (PUB, REP).
**Parameters:**
| Name | Type | Description |
|------|------|-------------|
| `endpoint` | `string` | ZMQ endpoint URL (e.g., `"tcp://0.0.0.0:5555"`) |
**Returns:**
- `true` if binding succeeded
- `false` if binding failed (check logs for error code)
**Endpoint Formats:**
| Format | Description |
|--------|-------------|
| `tcp://*:5555` | Bind to all interfaces on port 5555 |
| `tcp://0.0.0.0:5555` | Same as above |
| `tcp://127.0.0.1:5555` | Bind to localhost only |
| `ipc:///tmp/socket` | Inter-process communication (Unix only) |
**Example:**
```cpp
if(!publisher.Bind("tcp://0.0.0.0:5555")) {
Print("Failed to bind to port 5555");
return INIT_FAILED;
}
```
---
#### Connect
```cpp
bool Connect(string endpoint)
```
Connects the socket to a remote endpoint. Typically used by client-side sockets (SUB, REQ).
**Parameters:**
| Name | Type | Description |
|------|------|-------------|
| `endpoint` | `string` | ZMQ endpoint URL (e.g., `"tcp://127.0.0.1:5555"`) |
**Returns:**
- `true` if connection initiated successfully
- `false` if connection failed
**Example:**
```cpp
CZmq *subscriber = new CZmq();
subscriber.Init(ZMQ_SUB);
if(!subscriber.Connect("tcp://127.0.0.1:5555")) {
Print("Failed to connect to publisher");
}
```
---
#### Send
```cpp
int Send(string message, bool nonBlocking = true)
```
Sends a string message through the socket.
**Parameters:**
| Name | Type | Description |
|------|------|-------------|
| `message` | `string` | The message to send (UTF-8 encoded) |
| `nonBlocking` | `bool` | If `true`, returns immediately. If `false`, blocks until sent. Default: `true` |
**Returns:**
- Number of bytes sent on success
- `-1` on failure
**Example:**
```cpp
string json = "{\"symbol\":\"EURUSD\",\"bid\":1.1234}";
int bytes = publisher.Send(json, false); // Blocking send
if(bytes < 0) {
Print("Send failed");
}
```
---
#### Receive
```cpp
string Receive(bool nonBlocking = true)
```
Receives a message from the socket.
**Parameters:**
| Name | Type | Description |
|------|------|-------------|
| `nonBlocking` | `bool` | If `true`, returns immediately with empty string if no message. If `false`, blocks until message received. Default: `true` |
**Returns:**
- Received message as string on success
- Empty string `""` if no message available (non-blocking) or on error
**Buffer Size:**
- Maximum receive buffer is 4096 bytes
- For larger messages, modify the `buffer[4096]` in `Zmq.mqh`
**Example:**
```cpp
// Non-blocking receive (polling)
string msg = responder.Receive(true);
if(msg != "") {
Print("Received: ", msg);
}
// Blocking receive (waits for message)
string msg = requester.Receive(false);
```
---
#### Shutdown
```cpp
void Shutdown()
```
Closes the socket and terminates the ZMQ context. Should be called during cleanup.
**Example:**
```cpp
void OnDeinit(const int reason) {
if(g_publisher != NULL) {
g_publisher.Shutdown();
delete g_publisher;
g_publisher = NULL;
}
}
```
---
## Usage Guide
### Step 1: Include the Library
```cpp
#include <Zmq/Zmq.mqh>
```
### Step 2: Declare Global Instance
```cpp
CZmq *g_publisher; // Declare as pointer for proper lifecycle management
```
### Step 3: Initialize in OnInit()
```cpp
int OnInit() {
g_publisher = new CZmq();
if(!g_publisher.Init(ZMQ_PUB)) {
Print("ZMQ initialization failed");
return INIT_FAILED;
}
if(!g_publisher.Bind("tcp://0.0.0.0:5555")) {
Print("ZMQ bind failed");
return INIT_FAILED;
}
Print("ZMQ Publisher ready on port 5555");
return INIT_SUCCEEDED;
}
```
### Step 4: Use in OnTick()
```cpp
void OnTick() {
MqlTick tick;
if(SymbolInfoTick(_Symbol, tick)) {
string json;
StringConcatenate(json,
"{\"symbol\":\"", _Symbol,
"\",\"bid\":", DoubleToString(tick.bid, _Digits),
",\"ask\":", DoubleToString(tick.ask, _Digits),
"}");
g_publisher.Send(json);
}
}
```
### Step 5: Cleanup in OnDeinit()
```cpp
void OnDeinit(const int reason) {
if(g_publisher != NULL) {
g_publisher.Shutdown();
delete g_publisher;
g_publisher = NULL;
}
}
```
---
## Socket Patterns
### PUB/SUB Pattern (One-to-Many Broadcasting)
```mermaid
flowchart LR
PUB["Publisher\n(MT5 EA)"]
SUB1["Subscriber 1\n(Rust App)"]
SUB2["Subscriber 2\n(Go Service)"]
SUB3["Subscriber 3\n(Java Dashboard)"]
PUB -->|"Tick JSON"| SUB1
PUB -->|"Tick JSON"| SUB2
PUB -->|"Tick JSON"| SUB3
```
Used for real-time data streaming where the publisher broadcasts to all connected subscribers.
**MQL5 Side (Publisher):**
```cpp
CZmq *publisher = new CZmq();
publisher.Init(ZMQ_PUB);
publisher.Bind("tcp://0.0.0.0:5555");
// In OnTick
publisher.Send("{\"bid\": 1.1234}");
```
**Rust Client Side (Subscriber):**
```rust
use zeromq::{Socket, SubSocket};
let mut socket = SubSocket::new();
socket.connect("tcp://127.0.0.1:5555").await?;
socket.subscribe("").await?; // Subscribe to all messages
loop {
let msg = socket.recv().await?;
println!("Received: {:?}", msg);
}
```
**Go Client Side (Subscriber):**
```go
package main
import (
"fmt"
zmq "github.com/pebbe/zmq4"
)
func main() {
subscriber, _ := zmq.NewSocket(zmq.SUB)
defer subscriber.Close()
subscriber.Connect("tcp://127.0.0.1:5555")
subscriber.SetSubscribe("") // Subscribe to all messages
for {
msg, _ := subscriber.Recv(0)
fmt.Printf("Received: %s\n", msg)
}
}
```
---
### REQ/REP Pattern (Request-Reply)
```mermaid
sequenceDiagram
participant Client
participant REQ as REQ Socket
participant REP as REP Socket
participant MT5 as MT5 EA
Client->>REQ: market_buy request
REQ->>REP: Send JSON
REP->>MT5: Receive()
MT5->>MT5: g_trade.Buy()
MT5->>REP: Send response
REP->>REQ: JSON response
REQ->>Client: {success: true, ticket: 12345}
```
Used for command-response communication, such as order execution.
**MQL5 Side (Responder):**
```cpp
CZmq *responder = new CZmq();
responder.Init(ZMQ_REP);
responder.Bind("tcp://0.0.0.0:5556");
// In OnTick (non-blocking poll)
string request = responder.Receive(true);
if(request != "") {
// Process request
string response = ProcessOrderRequest(request);
responder.Send(response, false); // Blocking send required for REP
}
```
**Rust Client Side (Requester):**
```rust
use zeromq::{Socket, ReqSocket};
let mut socket = ReqSocket::new();
socket.connect("tcp://127.0.0.1:5556").await?;
// Send order request
let request = r#"{"type":"market_buy","symbol":"EURUSD","volume":0.01}"#;
socket.send(request.into()).await?;
// Wait for response
let response = socket.recv().await?;
println!("Response: {:?}", response);
```
**Go Client Side (Requester):**
```go
package main
import (
"fmt"
zmq "github.com/pebbe/zmq4"
)
func main() {
requester, _ := zmq.NewSocket(zmq.REQ)
defer requester.Close()
requester.Connect("tcp://127.0.0.1:5556")
// Send order request
request := `{"type":"market_buy","symbol":"EURUSD","volume":0.01}`
requester.Send(request, 0)
// Wait for response
response, _ := requester.Recv(0)
fmt.Printf("Response: %s\n", response)
}
```
---
## Message Protocol
### Tick Data Message (PUB Socket)
Published on every tick from MQL5 to connected subscribers.
```json
{
"symbol": "XAUUSDc",
"bid": 2345.67,
"ask": 2345.89,
"time": 1706400000,
"volume": 100,
"balance": 10000.00,
"equity": 10150.50,
"margin": 500.00,
"free_margin": 9650.50,
"min_lot": 0.01,
"max_lot": 100.00,
"lot_step": 0.01,
"positions": [
{
"ticket": 12345,
"type": "BUY",
"volume": 0.10,
"price": 2340.50,
"profit": 15.25
}
],
"orders": [
{
"ticket": 12346,
"type": "BUY LIMIT",
"volume": 0.05,
"price": 2330.00
}
]
}
```
### Order Request Message (REQ Socket)
Sent from external client to MQL5 for order execution.
**Market Order:**
```json
{
"type": "market_buy",
"symbol": "XAUUSDc",
"volume": 0.01,
"price": 0
}
```
**Limit Order:**
```json
{
"type": "limit_buy",
"symbol": "XAUUSDc",
"volume": 0.01,
"price": 2340.00
}
```
**Close Position:**
```json
{
"type": "close_position",
"ticket": 12345
}
```
**Cancel Order:**
```json
{
"type": "cancel_order",
"ticket": 12346
}
```
**Download History:**
```json
{
"type": "download_history",
"symbol": "XAUUSDc",
"timeframe": "M1",
"start": "2024.01.01",
"end": "2024.01.31",
"mode": "OHLC"
}
```
### Order Response Message (REP Socket)
Sent from MQL5 back to the client.
**Success:**
```json
{
"success": true,
"ticket": 12347
}
```
**Failure:**
```json
{
"success": false,
"error": "Error 10019: Not enough money"
}
```
### Supported Order Types
| Type String | Description |
|-------------|-------------|
| `market_buy` | Execute market buy order |
| `market_sell` | Execute market sell order |
| `limit_buy` | Place buy limit pending order |
| `limit_sell` | Place sell limit pending order |
| `stop_buy` | Place buy stop pending order |
| `stop_sell` | Place sell stop pending order |
| `close_position` | Close existing position by ticket |
| `cancel_order` | Delete pending order by ticket |
| `download_history` | Request historical data download |
---
## Complete Examples
### Example 1: Simple Tick Publisher
```cpp
//+------------------------------------------------------------------+
//| SimpleTickPublisher.mq5 |
//+------------------------------------------------------------------+
#include <Zmq/Zmq.mqh>
input string InpAddress = "tcp://0.0.0.0:5555";
CZmq *g_publisher;
int OnInit() {
g_publisher = new CZmq();
if(!g_publisher.Init(ZMQ_PUB)) {
Print("Failed to init ZMQ");
return INIT_FAILED;
}
if(!g_publisher.Bind(InpAddress)) {
Print("Failed to bind");
return INIT_FAILED;
}
Print("Publisher ready on ", InpAddress);
return INIT_SUCCEEDED;
}
void OnDeinit(const int reason) {
if(g_publisher != NULL) {
g_publisher.Shutdown();
delete g_publisher;
}
}
void OnTick() {
MqlTick tick;
if(SymbolInfoTick(_Symbol, tick)) {
string json;
StringConcatenate(json,
"{\"symbol\":\"", _Symbol,
"\",\"bid\":", DoubleToString(tick.bid, _Digits),
",\"ask\":", DoubleToString(tick.ask, _Digits),
",\"time\":", IntegerToString(tick.time),
"}");
g_publisher.Send(json);
}
}
```
### Example 2: Order Executor Service
```cpp
//+------------------------------------------------------------------+
//| OrderExecutor.mq5 |
//+------------------------------------------------------------------+
#include <Zmq/Zmq.mqh>
#include <Trade/Trade.mqh>
input string InpAddress = "tcp://0.0.0.0:5556";
CZmq *g_responder;
CTrade g_trade;
int OnInit() {
g_responder = new CZmq();
if(!g_responder.Init(ZMQ_REP))
return INIT_FAILED;
if(!g_responder.Bind(InpAddress))
return INIT_FAILED;
g_trade.SetDeviationInPoints(10);
Print("Order executor ready on ", InpAddress);
return INIT_SUCCEEDED;
}
void OnDeinit(const int reason) {
if(g_responder != NULL) {
g_responder.Shutdown();
delete g_responder;
}
}
void OnTick() {
// Non-blocking receive
string request = g_responder.Receive(true);
if(request == "") return;
Print("Request: ", request);
// Parse and execute (simplified)
string response;
if(StringFind(request, "market_buy") >= 0) {
double ask = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
if(g_trade.Buy(0.01, _Symbol, ask)) {
StringConcatenate(response,
"{\"success\":true,\"ticket\":",
IntegerToString(g_trade.ResultOrder()), "}");
} else {
response = "{\"success\":false,\"error\":\"Buy failed\"}";
}
} else {
response = "{\"success\":false,\"error\":\"Unknown command\"}";
}
g_responder.Send(response, false); // Blocking send for REP
Print("Response: ", response);
}
```
### Example 3: Rust Client (Complete)
```rust
// Cargo.toml dependencies:
// zeromq = "0.3"
// tokio = { version = "1", features = ["full"] }
// serde = { version = "1", features = ["derive"] }
// serde_json = "1"
use serde::{Deserialize, Serialize};
use tokio::sync::mpsc;
use zeromq::{Socket, SocketRecv, SocketSend};
#[derive(Debug, Deserialize)]
struct TickData {
symbol: String,
bid: f64,
ask: f64,
time: i64,
}
#[derive(Debug, Serialize)]
struct OrderRequest {
#[serde(rename = "type")]
order_type: String,
symbol: String,
volume: f64,
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Subscribe to tick data
let (tx, mut rx) = mpsc::channel::<TickData>(100);
tokio::spawn(async move {
let mut socket = zeromq::SubSocket::new();
socket.connect("tcp://127.0.0.1:5555").await.unwrap();
socket.subscribe("").await.unwrap();
loop {
if let Ok(msg) = socket.recv().await {
if let Some(bytes) = msg.get(0) {
if let Ok(json) = std::str::from_utf8(bytes) {
if let Ok(tick) = serde_json::from_str::<TickData>(json) {
let _ = tx.send(tick).await;
}
}
}
}
}
});
// Process ticks
while let Some(tick) = rx.recv().await {
println!("{}: Bid={}, Ask={}", tick.symbol, tick.bid, tick.ask);
}
Ok(())
}
```
### Example 4: Java Client (Complete)
```java
// Maven dependency: org.zeromq:jeromq:0.5.3
import org.zeromq.SocketType;
import org.zeromq.ZContext;
import org.zeromq.ZMQ;
import com.google.gson.Gson;
public class MT5Client {
private ZContext context;
private ZMQ.Socket subscriber;
private ZMQ.Socket requester;
private Gson gson = new Gson();
public MT5Client(int tickPort, int orderPort) {
context = new ZContext();
// Subscriber for tick data
subscriber = context.createSocket(SocketType.SUB);
subscriber.connect("tcp://127.0.0.1:" + tickPort);
subscriber.subscribe("".getBytes());
// Requester for orders
requester = context.createSocket(SocketType.REQ);
requester.connect("tcp://127.0.0.1:" + orderPort);
}
public void startTickStream() {
new Thread(() -> {
while (!Thread.currentThread().isInterrupted()) {
String msg = subscriber.recvStr(ZMQ.DONTWAIT);
if (msg != null) {
TickData tick = gson.fromJson(msg, TickData.class);
System.out.printf("%s: Bid=%.5f, Ask=%.5f%n",
tick.symbol, tick.bid, tick.ask);
}
try { Thread.sleep(1); } catch (InterruptedException e) { break; }
}
}).start();
}
public OrderResponse sendOrder(String type, String symbol, double volume) {
OrderRequest request = new OrderRequest(type, symbol, volume);
requester.send(gson.toJson(request));
String response = requester.recvStr();
return gson.fromJson(response, OrderResponse.class);
}
public void close() {
context.close();
}
// Data classes
static class TickData {
String symbol;
double bid, ask;
long time;
}
static class OrderRequest {
String type, symbol;
double volume;
OrderRequest(String t, String s, double v) { type=t; symbol=s; volume=v; }
}
static class OrderResponse {
boolean success;
Long ticket;
String error;
}
public static void main(String[] args) {
MT5Client client = new MT5Client(5555, 5556);
client.startTickStream();
// Execute a buy order
OrderResponse response = client.sendOrder("market_buy", "EURUSD", 0.01);
System.out.println("Order result: " + response.success);
}
}
```
### Example 5: C++ Client (Complete)
```cpp
// Requires: libzmq, cppzmq, nlohmann/json
// Compile: g++ -std=c++17 -o mt5_client mt5_client.cpp -lzmq -lpthread
#include <zmq.hpp>
#include <nlohmann/json.hpp>
#include <iostream>
#include <thread>
#include <atomic>
using json = nlohmann::json;
class MT5Client {
private:
zmq::context_t context;
zmq::socket_t subscriber;
zmq::socket_t requester;
std::atomic<bool> running{false};
std::thread tick_thread;
public:
MT5Client(int tick_port = 5555, int order_port = 5556)
: context(1), subscriber(context, zmq::socket_type::sub),
requester(context, zmq::socket_type::req) {
subscriber.connect("tcp://127.0.0.1:" + std::to_string(tick_port));
subscriber.set(zmq::sockopt::subscribe, "");
requester.connect("tcp://127.0.0.1:" + std::to_string(order_port));
}
void start_tick_stream() {
running = true;
tick_thread = std::thread([this]() {
while (running) {
zmq::message_t message;
auto result = subscriber.recv(message, zmq::recv_flags::dontwait);
if (result) {
std::string msg(static_cast<char*>(message.data()), message.size());
json tick = json::parse(msg);
std::cout << tick["symbol"].get<std::string>()
<< ": Bid=" << tick["bid"].get<double>()
<< ", Ask=" << tick["ask"].get<double>() << std::endl;
}
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
});
}
json send_order(const std::string& type, const std::string& symbol, double volume) {
json request = {{"type", type}, {"symbol", symbol}, {"volume", volume}};
std::string req_str = request.dump();
zmq::message_t req_msg(req_str.begin(), req_str.end());
requester.send(req_msg, zmq::send_flags::none);
zmq::message_t reply;
requester.recv(reply);
std::string reply_str(static_cast<char*>(reply.data()), reply.size());
return json::parse(reply_str);
}
json market_buy(const std::string& symbol, double volume) {
return send_order("market_buy", symbol, volume);
}
json market_sell(const std::string& symbol, double volume) {
return send_order("market_sell", symbol, volume);
}
void stop() {
running = false;
if (tick_thread.joinable()) tick_thread.join();
}
~MT5Client() { stop(); }
};
int main() {
MT5Client client;
client.start_tick_stream();
// Execute a buy order
json response = client.market_buy("EURUSD", 0.01);
std::cout << "Order result: " << response.dump() << std::endl;
// Keep running
std::this_thread::sleep_for(std::chrono::seconds(60));
return 0;
}
```
---
## Error Handling
### ZMQ Error Codes
The library uses `zmq_errno()` to retrieve error codes. Common errors:
| Error Code | Description | Solution |
|------------|-------------|----------|
| 11 | EAGAIN (resource unavailable) | Normal for non-blocking ops when no data |
| 48 | EADDRINUSE (address in use) | Port already bound, use different port |
| 111 | ECONNREFUSED | Remote endpoint not available |
| 156384713 | ETERM (context terminated) | ZMQ context was terminated |
### Defensive Programming
```cpp
// Always check initialization
if(!g_publisher.Init(ZMQ_PUB)) {
Print("ZMQ Init failed");
return INIT_FAILED;
}
// Always check bind/connect
if(!g_publisher.Bind("tcp://0.0.0.0:5555")) {
Print("ZMQ Bind failed, errno: ", zmq_errno());
g_publisher.Shutdown();
return INIT_FAILED;
}
// Handle empty receive gracefully
string msg = g_responder.Receive(true);
if(msg == "") {
// No message available, continue
return;
}
```
---
## Best Practices
### 1. Resource Management
Always use pointers and proper cleanup:
```cpp
CZmq *g_socket = NULL; // Initialize to NULL
int OnInit() {
g_socket = new CZmq();
// ... init and bind
}
void OnDeinit(const int reason) {
if(g_socket != NULL) {
g_socket.Shutdown();
delete g_socket;
g_socket = NULL;
}
}
```
### 2. Non-Blocking in OnTick()
Never use blocking operations in `OnTick()` - they will freeze the terminal:
```cpp
void OnTick() {
// GOOD: Non-blocking receive
string msg = g_responder.Receive(true);
// BAD: This would freeze the terminal
// string msg = g_responder.Receive(false);
}
```
### 3. REQ/REP Pattern Compliance
The REP socket must always send a reply after receiving a request:
```cpp
void OnTick() {
string request = g_responder.Receive(true);
if(request != "") {
// MUST send response for every request
string response = ProcessRequest(request);
g_responder.Send(response, false); // Use blocking send
}
}
```
### 4. Buffer Size Considerations
The default receive buffer is 4096 bytes. For larger messages:
```cpp
// In Zmq.mqh, modify:
uchar buffer[16384]; // Increase to 16KB
```
### 5. JSON Message Construction
Use `StringConcatenate` for efficient string building:
```cpp
string json;
StringConcatenate(json,
"{\"symbol\":\"", _Symbol,
"\",\"value\":", DoubleToString(value, 5),
"}");
```
---
## Troubleshooting
### Common Issues
**Issue: "dll imports are not allowed"**
- Solution: Enable `Allow DLL imports` in Tools > Options > Expert Advisors
**Issue: "Cannot load library 'libzmq.dll'"**
- Solution: Ensure libzmq.dll is in MQL5/Libraries/ folder
- Solution: Ensure libsodium.dll is also present (dependency)
- Solution: Verify DLLs are 64-bit if using 64-bit MT5
**Issue: "ZMQ Bind failed"**
- Solution: Check if port is already in use
- Solution: Try a different port number
- Solution: Ensure firewall allows the port
**Issue: No data received on subscriber**
- Solution: Ensure subscriber connects AFTER publisher binds
- Solution: Add a small delay after connect before expecting data
- Solution: Verify network connectivity
**Issue: "Request not answered" on REQ socket**
- Solution: Ensure REP socket always sends a response for every receive
- Solution: Check for crashes in request processing logic
### Debug Logging
Add print statements to trace execution:
```cpp
void OnTick() {
string request = g_responder.Receive(true);
if(request != "") {
Print("Received request: ", request);
string response = ProcessRequest(request);
Print("Sending response: ", response);
int sent = g_responder.Send(response, false);
Print("Bytes sent: ", sent);
}
}
```
---
## Version History
| Version | Date | Changes |
|---------|------|---------|
| 2.00 | 2026-01-27 | Added REP socket support, order handling, account info streaming |
| 1.00 | 2026-01-20 | Initial release with PUB socket support |
---
## License
MIT License
Copyright (c) 2026 Albeos Rembrant
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
---
## References
- [ZeroMQ Official Documentation](https://zeromq.org/get-started/)
- [ZeroMQ Socket Types Guide](https://zeromq.org/socket-api/)
- [MQL5 DLL Import Guide](https://www.mql5.com/en/docs/runtime/imports)
- [GitHub Repository](https://github.com/algorembrant/Rust-ZMQ-MT5)
---
## Citation
If you use this library in your research or project, please cite:
```bibtex
@software{rembrant2026sum3api,
author = {Rembrant, Albeos},
title = {{SUM3API}: Using Rust, ZeroMQ, and MetaQuotes Language (MQL5) API Combination to Extract, Communicate, and Externally Project Financial Data from MetaTrader 5 (MT5)},
year = {2026},
publisher = {GitHub},
url = {https://github.com/algorembrant/Rust-ZMQ-MT5},
version = {2.00}
}
```
//end of documentattion |