IP를 통해 Java에서 MT4로 주문 보내기 - 페이지 5

 
JC : 지원 데스크가 두 번 응답할 때까지 기다릴 수 없습니다. Fernando의 제안에 따라 블로그 항목으로 게시됨: https://www.mql5.com/en/blogs/post/706665
큰 기여에 감사드립니다. 나는 가까운 장래에 그러한 기능이 필요할 것이고 당신은 내가 직접 무언가를 작성해야 하는 일에서 나를 구해주었습니다.
 
JC :

https://www.mql5.com/en/forum/203049#comment_5232176 에 별도의 소켓 라이브러리를 게시했습니다.

그런 다음 이 두 스레드의 코드 조합을 코드베이스에 제출하려고 시도했지만 MQ 지원에서는 MQL4와 MQL5 모두에서 작동한다는 사실을 처리할 수 없었지만 코드베이스에서는 MQL4와 MQL5에 대해 별도의 섹션이 필요했습니다. MQ의 교정을 기다리는 6월부터 코드베이스에 앉아 있습니다. 포기하고 포럼 주제로 게시 할 수도 있습니다 ...

안녕,

MQL4에 대한 클라이언트 구현은 어디에서 찾을 수 있습니까?

 
leonerd :

안녕,

MQL4에 대한 클라이언트 구현은 어디에서 찾을 수 있습니까?

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

내가 찾은 것 같아

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

내가 찾은 것 같아

이것은 데이터 전송 전용입니다. 수신을 위한 클라이언트 소켓 라이브러리가 있습니까?

 
leonerd :

이것은 데이터 전송 전용입니다. 수신을 위한 클라이언트 소켓 라이브러리가 있습니까?

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 :

이것은 데이터 전송 전용입니다. 수신을 위한 클라이언트 소켓 라이브러리가 있습니까?

이 기본 사항을 확인하십시오 ...소켓 프로그래밍
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...
사유: