MetaTrader 4 β€£ MT4 Libraries β€£ ZeroMQ asynchronous communication – library MetaTrader 4

ZeroMQ asynchronous communication – library MetaTrader 4

ZEROMQ

These are partial bindings to the zeromq library along with a demo of a zeromq tcp socket. If anyone makes more complete bindings please share! I might if i need all of the features. Linux wine version also included.

Quote:

Γ˜β€‚β€‚The socket library that acts as a concurrency framework.

β€‚Γ˜β€‚β€‚Carries messages across inproc, IPC, TCP, and multicast.


β€‚Γ˜β€‚β€‚Connect N-to-N via fanout, pubsub, pipeline, request-reply.


β€‚Γ˜β€‚β€‚Fast enough for clustered products and supercomputing.


β€‚Γ˜β€‚β€‚Asynch I/O for scalable multicore message-passing apps.


β€‚Γ˜β€‚β€‚Large and active open source community.


β€‚Γ˜β€‚β€‚20+ languages including C, C++, Java, .NET, Python.


β€‚Γ˜β€‚β€‚Most OSes including Linux, Windows, OS X.


β€‚Γ˜β€‚β€‚LGPL free software with full commercial support.”

And its very simple to use. Notice that you cant automatically connect to a raw socket, we’re connecting zeromq to zeromq here. Though i think there is support for adding raw sockets into a network using zeromq_poll, though i haven’t bound that yet.

VERSION 2: precompiled libs for windows and linux x86 32 bit added (using zeromq version 2.0.10). Added cmake build script for windows. Updated zeromq script so that it uses port 127.0.0.1, instead of ‘localhost’ which doesnt work. And most importantly fixed a shared memory bug between mql4 and zeromq library – basically we now copy strings sent to our wrapper library and copy new strings when we request data from a message. Note that there is no check if malloc returns null in sample code, maybe that should also be included for rare cases when not enough memory is available? So we dont crash metatrader by trying to pass in a null pointer? I’ll test this soon..

Alternative:   Predictor Marks for Renko, Mean Renko and Range Bars - indicator MetaTrader 4

VERSION 3: pub/sub, multipart send (no receive), polling on one socket, no more using of raw messages (automatically created/deleted). Added commando and pub/sub example, updated other example. NOTE: i dont know how to safely destroy a poll object, i tried free(ptr) and metatrader crashes. if anyone can help here….

VERSION 3.2: added multi part receive (through z_more), added sending of double arrays and int arrays, refactored commando example (and demonstrate array sending). changed window dlls to release. added linux libzmq.so

VERSION 3.3: updated commando example to include multipart receive. And also majorly changed it to make more efficient. Also included GUI.mqh

UPDATE : modified commando.zip to include an executable (commando.exe) that will install the newest version of libzmq and bindings and sample commando program along with a python interface. This might be a quick fix for problems mentioned below. So just run commando.exe….

πŸ“ˆ ROBOTFX MetaTrader Expert Advisors and Indicators to maximize profits and minimize the risks