You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Is there an example of such a sorting function?
apprentice coder
Here is an indicator that has such a sorting procedure (it is sorting 2 dimensional array) : spearman_rank_correlation_nmc.mq4
apprentice coder Here is an indicator that has such a sorting procedure (it is sorting 2 dimensional array) : spearman_rank_correlation_nmc.mq4
Great. Thanks
Great. Thanks
You can make that sort routine even simpler (since that one is used for raking and sorting in the same time)
You can make that sort routine even simpler (since that one is used for raking and sorting in the same time)
Yes, I have seen that already
Hi all,
how can is send an URL-String like this:
http://localhost:45000/trading/client/dotrade/123456/EURUSD/1/BUY/101960/SR-7/1
with mq4?
thanks for your help
Thomas
Hi all,
how can is send an URL-String like this:
http://localhost:45000/trading/client/dotrade/123456/EURUSD/1/BUY/101960/SR-7/1
with mq4?
thanks for your help
ThomasYou have to use windows API functions for that
You have to use windows API functions for that
can you tell me wich one, pls ?
Thanks
Thomas
can you tell me wich one, pls ?
Thanks
ThomasAs far as I see "localhost:45000" is related to databases (oracle, mysql, ...) You will have to get the API documentation of the database (if that is what you are trying to access) that needs to be accessed
As far as I see "localhost:45000" is related to databases (oracle, mysql, ...) You will have to get the API documentation of the database (if that is what you are trying to access) that needs to be accessed
Normaly i can send this URL with a normal Browser.
I think der is no special API for this. The DLL shoud do the same as an Standard-Browser.
Thx
Thomas
Normaly i can send this URL with a normal Browser.
I think der is no special API for this. The DLL shoud do the same as an Standard-Browser.
Thx
Thomas"localhost" in that part is an IP 127.0.0.1.
That IP is not an internet IP : it is your own machine (IP 127.0.0.1 is always your own machine) and that port (45000) is (probably) created by some software on your local machine. Using metatrader ex4 as a browser, regardless of the dll used from the code, is not possible