MQL4参考 文件函数 FileOpenHistory

FileOpenHistory

Opens file in the current history directory (terminal_directory\history\server_name) or in its subfolders.

int  FileOpenHistory(
   int       filename,       // file name
   int       mode,           // open mode
   int       delimiter=';'   // delimiter
   );

Parameters

filename

[in]  File name.

mode

[in]  File open mode. Can be one or combination of values: FILE_BIN, FILE_CSV, FILE_READ, FILE_WRITE, FILE_SHARE_READ, FILE_SHARE_WRITE.

delimiter=';'

[in]  Delimiter for csv files. By default, the ';' symbol will be passed.

Returned value

Returns the file handle for the opened file. If the function fails, the returned value is -1. To get the detailed error information, call the GetLastError() function.

Note

Client terminal can connect to servers of different brokerage companies. History data (HST files) for each brokerage company are stored in the corresponding subfolder of the terminal_directory\history folder. The function can be useful to form own history data for a non-standard symbol and/or period. The file formed in the history folder can be opened offline, not data pumping is needed to chart it.

In the new MQL4, FILE_SHARE_WRITE and FILE_SHARE_READ flags should explicitly be specified for shared use when opening files. If the flags are absent, the file is opened in exclusive mode and cannot be opened by anyone else till it is closed by the user who opened it (see "Offline Charts in the New MQL4").

Example:

  int handle=FileOpenHistory("USDX240.HST",FILE_BIN|FILE_WRITE|FILE_SHARE_WRITE|FILE_SHARE_READ);
  if(handle<1)
    {
     Print("Cannot open file USDX240.HST");
     return(false);
    }
  // work with file
  // ...
  FileClose(handle);