Senden von Aufträgen an MT4 aus Java über IP - Seite 5

 
JC: Ich habe keine Lust, zweimal auf eine Antwort des Supports zu warten. Veröffentlicht als Blogeintrag auf Anregung von Fernando:https://www.mql5.com/en/blogs/post/706665
Vielen Dank für diesen großartigen Beitrag. Ich werde diese Funktion in naher Zukunft benötigen, und Sie haben mir gerade erspart, selbst etwas zu schreiben.
 
JC:

Ich habe eine separate Socket-Bibliothek unterhttps://www.mql5.com/en/forum/203049#comment_5232176 veröffentlicht.

Ich habe dann versucht, eine Kombination des Codes in diesen beiden Threads an die Codebase zu übermitteln, aber der MQ-Support konnte nicht damit umgehen, dass es sowohl mit MQL4 als auch mit MQL5 funktioniert, während die Codebase getrennte Abschnitte für MQL4 und MQL5 verlangt. Seit Juni liegt es in der Codebase und wartet auf die Korrekturlesung durch MQ. Vielleicht gebe ich es auf und poste es einfach als Forumsthema...

Hallo!

Leute, wo kann ich eine Client-Implementierung für MQL4 finden?

 
leonerd:

Hallo,

Leute, wo kann ich eine Client-Implementierung für MQL4 finden?

https://www.mql5.com/en/forum/203049#comment_5231381

sieht so aus, als hätte ich gefunden

Raw Socket Client for MT4???
Raw Socket Client for MT4???
  • 2017.06.02
  • www.mql5.com
Hello, I currently have a (raw) socket server by python/php and I want to get Tick() of many pairs from MT4 to this server...
 
leonerd:

https://www.mql5.com/en/forum/203049#comment_5231381

sieht aus, als hätte ich gefunden

Diese ist nur für das Senden von Daten. Gibt es eine Client-Socket-Bibliothek für den Empfang?

 
leonerd:

Diese ist nur für das Senden von Daten. Gibt es eine Client-Socket-Bibliothek für den Empfang?

https://www.mql5.com/en/blogs/post/706665

Socket library for MT4 and MT5
Socket library for MT4 and MT5
  • 2017.09.06
  • www.mql5.com
For anyone not used to socket programming: the model is that you create a server socket; you accept connections on it; and each acceptance creates a new socket for communicating with that client. No data is sent or received through the server socket itself. You create a server socket using an instance of ServerSocket(), telling the constructor...
 
leonerd:

Diese ist nur für das Senden von Daten. Gibt es eine Client-Socket-Bibliothek für den Empfang?

Prüfen Sie diese Grundlagen der...Socket-Programmierung
Java Socket Programming
  • net-informations.com
A socket is one of the most fundamental technologies of computer network programming . It is a way of connecting two nodes on a network to communicate with each other. Socket-based software usually runs on two separate computers on the network, but sockets can also be used to communicate locally (interprocess) on a single computer. The Java...