Yes , it is possible with WinInet dll.
I've been using the attached include for a long time in MT4 to access the Forex Factory xml calendar, and also to scrape a signals service. On my (rather long) list of things to do is to convert it to MQL5.
The only problem I've had with it is that it refuses to refresh the FF xml calendar when it changes, no matter what flags I try.
Paul
Files:
wininet_v2.mqh
6 kb
Here is another one (script):
#import "shell32.dll" int ShellExecuteW(int hwnd,string Operation,string File,string Parameters,string Directory,int ShowCmd); #import void OnStart() { Shell32::ShellExecuteW(0,"open","http://mql5.com","","",3); }
By the way, the example in MQL5 is available now.
See script WININET_TEST, that downloads file using wininet.dll.
wininet isn't working after the las MT5 update. Any solution found?
fjccpm:
wininet isn't working after the las MT5 update. Any solution found?
Please wait for the next build. There are problems with the dll callswininet isn't working after the las MT5 update. Any solution found?

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
I want release some trade info, like:
After a order placed, I will call a http://...../boardcast.php,
Is it a way to open URL by code from expert?