I'm just gonna put this out there... Is anyone is interested in helping me develop an EA to turn MT4 into a generic (JSON) api server over zeromq?
In short, this project would develop a generic JSON interface and api schema in order to be able to develop algos in any (zmq supported) programming language to be used with MT4.
As an example:
external program sends request:
and MT4 zmq api sends response
In short, this project would develop a generic JSON interface and api schema in order to be able to develop algos in any (zmq supported) programming language to be used with MT4.
As an example:
external program sends request:
Inserted Code
{
"request": {
"open-positions": {
"symbols":["EURUSD","EURGBP"],
"magics":[127368]
}
}
} and MT4 zmq api sends response
Inserted Code
{
"response": {
"open-positions": [
{
"symbol": "EURUSD",
"size": 0.01,
...
}
]
}
}