Ding Li
Ding Li
Thanks for your interest. Currently there is no systematic way to serialize objects to disk. You have to do it by yourself. In the future, this might be added to...
Hi, you can check out the serialization format supported in the mql4-lib: 1. CSV file is the simplest, you can use CsvFile class in Util/File.mqh 2. Format/Resp.mqh or Format/Json.mqh and...
Hi, @jayaruvan there are two ways for authentication: 1. you make your own username/password based authentication protocol, and encrypting your traffic with custom hash functions. 2. using zmq_curve (which is...
You may want to use Mt4ServerRaw because it uses raw tcp connection, which is the same as redis-cli. You use Mt4ServerZMQ only when you are using a zmq based client.
It is possible, but you need to use some low level methods instead of wrapped commands (the protocol is same but the commands are different)
OrderGroup is simple and it is demonstrated in the documentation. OrderTracker is a bit complex I will need time to come up with a good example.
@Deraen Yes it is in the path. I install Java 8 from http://www.azul.com/downloads/zulu/zulu-windows/, and confirmed that I can run java -version. However, boot.exe said it needs java 7 or later....
Confirmed that this is an upstream problem: https://sourceforge.net/p/launch4j/feature-requests/103/ And this discussion provides a solution to this problem: https://github.com/kaikramer/keystore-explorer/issues/52.
@martinklepsch Yes, and Launch4j is not interested to solve this problem in the near future. How about forking launch4j and making the change ourselves?
Maybe you can use a global pointer to store the socket?