I Need Script To Login A Website

MQL4 脚本

工作已完成

执行时间12 分钟
客户反馈
Very Very good programer ! i had a very complicated task that some other developers could not do it ! but he did it in some minutes ! THANKS
员工反馈
I'm glad to work with you. Thank you very much!!

指定

Hello

I want a script to login to this website  http://www.investing.com/members-admin/auth/login and after login i want the script to go to this page in the website http://www.investing.com/economic-calendar/ and this page i want to download it as htm. through the script


To the  folder MQL4/Files and then i will work with the file forther , so basically this is the job. BUT it is very important to know if you can do this job first because i have used other depolovers and they say it is hard and not possible to do it.


 

 

I have this samble of the script that i have created but i have problem with login and after that go to the page http://www.investing.com/economic-calendar/ and download it to the MQL4/Files, this is what i need help for !

 

 

//+------------------------------------------------------------------+ 
//| Login to Website                                                 | 
//+------------------------------------------------------------------+ 
#property script_show_inputs 

input string Email   ="";
input string Password="";

void OnStart()
  { 
   int    res;     // To receive the operation execution result 
   char   data[];  // Data array to send POST requests 
   char   result[];// page content.
   
   string str="loginFormUser_email="+Email+"&loginForm_password="+Password; // this is where i put the login and password <------


//--- Create the body of the POST request for authorization 
   ArrayResize(data,StringToCharArray(str,data,0,WHOLE_ARRAY,CP_UTF8)-1); 
//--- Resetting error code 
   ResetLastError(); 
//--- Authorization request 
   res=WebRequest("POST","http://www.investing.com/members-admin/auth/login",NULL,0,data,result,str); 
//--- If authorization failed 
   if(res!=200) 
     { 
      Print("Authorization error #"+(string)res+", LastError="+(string)GetLastError()); 
      return; 
     } 
      //--- Save the data to a file 
      int filehandle=FileOpen("Investing Page.htm",FILE_WRITE|FILE_BIN); 
      //--- Checking errors 
      if(filehandle!=INVALID_HANDLE) 
        { 
         //--- Save the contents of the result[] array to a file 
         FileWriteArray(filehandle,result,0,ArraySize(result)); 
         //--- Close the file 
         FileClose(filehandle); 
        }
   return;

  }

 You can see the source code this is the idea ! it is very simple to understand what i want i just want to login to the website then go to the page and write this page to a htm. file in the MQL4/Files filder.


 


important thing also is i want the source code file and in the source code i want the programmer to use //comment for each line explaining the source code .


So my requierments are 

1. script for login into website 

2. i want the source code of the script

3. i want the programer to //comment all the lines in the source code 

4. i want the script to login to the website then go to another page and then write the content into an htm. file in the MQL4/Files folder then i will process the content myself after that.

5. my goal is to get information out of the page where the economic calender have information about economic releases, when i get this page in the folder with it content i can find the informatin in it myself after that.


 

and this is some pictuers to explain more what i mean.

 

 

 

Thnaks 

反馈

1
开发者 1
等级
(13)
项目
24
42%
仲裁
3
33% / 0%
逾期
4
17%
空闲
2
开发者 2
等级
(258)
项目
396
28%
仲裁
69
19% / 49%
逾期
121
31%
空闲
3
开发者 3
等级
(253)
项目
358
49%
仲裁
24
25% / 50%
逾期
80
22%
空闲
4
开发者 4
等级
(91)
项目
144
38%
仲裁
67
15% / 48%
逾期
55
38%
空闲
5
开发者 5
等级
(54)
项目
64
42%
仲裁
5
20% / 60%
逾期
4
6%
空闲
发布者: 1 代码
6
开发者 6
等级
(39)
项目
44
16%
仲裁
1
100% / 0%
逾期
7
16%
空闲
7
开发者 7
等级
(28)
项目
36
17%
仲裁
5
20% / 40%
逾期
17
47%
空闲
发布者: 5 代码
8
开发者 8
等级
(64)
项目
144
46%
仲裁
19
42% / 16%
逾期
32
22%
工作中

项目信息

预算
30- USD
截止日期
 7 天