JavaからIP経由でMT4へ注文を送信 - ページ 5

 
JC: サポートデスクの対応を2 回も待つのは面倒だ。Fernandoの提案に従い、ブログエントリーとして公開https://www.mql5.com/en/blogs/post/706665
素晴らしい貢献をありがとうございました。近い将来、このような機能が必要になると思うのですが、あなたのおかげで自分で何かを書かなくてもよくなりました。
 
JC:

私は、別のソケットライブラリをhttps://www.mql5.com/en/forum/203049#comment_5232176 に投稿しました。

その後、この2つのスレッドのコードを組み合わせてcodebaseに投稿してみましたが、codebaseではMQL4とMQL5用に別々のセクションを必要としているのに対し、MQL4とMQL5の両方で動作するという事実をMQ Supportは扱うことができませんでした。6月からcodebaseの中でMQによる校正を待っている状態です。あきらめて、フォーラムのトピックとして投稿しようかな...。

こんにちは。

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...