FileReadStruct

この関数は、バイナリファイルからパラメーターとして渡された構造に、ファイルポインターの現在の位置から内容を読み取ります。

uint  FileReadStruct(
   int          file_handle,        // file handle
   const void&  struct_object,      // target structure to which the contents are read
   int          size=-1             // structure size in bytes
   );

パラメーター

file_handle

[in]開いているbinファイルのファイル記述子。

struct_object

[out]この構造のオブジェクト。構造には、文字列、動的配列、または仮想関数を含めることはできません。

サイズ= -1

[in]読み込む必要のあるバイト数。サイズが指定されていない場合、または指定された値が構造のサイズより大きい場合、指定された構造の正確なサイズが使用されます。

戻り値

成功した場合、関数は読み込んだバイト数を返します。エラーの場合は0を返します。成功した場合、読み込まれたバイト数は構造のサイズに対応します。エラーに関する情報を取得するには、GetLastError()関数を呼び出します。ファイルポインタは同じバイト数だけ移動されます。

FileWriteStruct()関数の例を使用した後に取得したファイルがここで使用されます)

//+——————————————————————+
//|                                          Demo_FileReadStruct.mq4 |
//|                        Copyright 2014, MetaQuotes Software Corp. |
//|                                              https://www.mql5.com |
//+——————————————————————+
#property copyright “Copyright 2014, MetaQuotes Software Corp.”
#property link      “https://www.mql5.com”
#property version   “1.00”
#property indicator_separate_window
#property indicator_buffers 4
//—- plot Label1
#property indicator_label1  “Open”
#property indicator_type1    DRAW_LINE
#property indicator_color1  clrBlue
#property indicator_style1  STYLE_SOLID
#property indicator_width1  1
#property indicator_label1  “High”
#property indicator_type2    DRAW_LINE
#property indicator_color2  clrGreen
#property indicator_style2  STYLE_SOLID
#property indicator_width2  1
#property indicator_label1  “Low”
#property indicator_type3    DRAW_LINE
#property indicator_color3  clrOrange
#property indicator_style3  STYLE_SOLID
#property indicator_width3  1
#property indicator_label1  “Close”
#property indicator_type4    DRAW_LINE
#property indicator_color4  clrRed
#property indicator_style4  STYLE_SOLID
#property indicator_width4  1
#property indicator_separate_window
//— parameters for receiving data
input string  InpFileName=“EURUSD.txt”// file name
input string  InpDirectoryName=“Data”;  // directory name
//+——————————————————————+
//| Structure for storing candlestick data                           |
//+——————————————————————+
struct candlesticks
  {
   double            open;  // open price
   double            close// close price
   double            high;  // high price
   double            low;   // low price
   datetime          date;  // date
  };
//— indicator buffers
double       open_buff[];
double       close_buff[];
double       high_buff[];
double       low_buff[];
//— global variables
candlesticks cand_buff[];
int          size=0;
int          ind=0;
//+——————————————————————+
//| Custom indicator initialization function                         |
//+——————————————————————+
int OnInit()
  {
   int default_size=100;
   ArrayResize(cand_buff,default_size);
//— open the file
   ResetLastError();
   int file_handle=FileOpen(InpDirectoryName+“//”+InpFileName,FILE_READ|FILE_BIN|FILE_COMMON);
   if(file_handle!=INVALID_HANDLE)
     {
      PrintFormat(“%s file is available for reading”,InpFileName);
      PrintFormat(“File path: %s\\Files\\”,TerminalInfoString(TERMINAL_COMMONDATA_PATH));
      //— read data from the file
      while(!FileIsEnding(file_handle))
        {
         //— write data to the array
         uint bytesread=FileReadStruct(file_handle,cand_buff[size]);        
         //— check data read
         if (bytesread!=sizeof(candlesticks))
           {
            PrintFormat(“Error reading data. Error code=%d”,GetLastError());
            //— close the file
            FileClose(file_handle);
            return(INIT_FAILED);
           }
         else
           {
            size++;
            //— check if the array is overflown
            if(size==default_size)
              {
               //— increase the array size
               default_size+=100;
               ArrayResize(cand_buff,default_size);
              }
           }           
        }
      //— close the file
      FileClose(file_handle);
      PrintFormat(“Data is read, %s file is closed”,InpFileName);
     }
   else
     {
      PrintFormat(“Failed to open %s file, Error code = %d”,InpFileName,GetLastError());
      return(INIT_FAILED);
     }
//— indicator buffers mapping
   SetIndexBuffer(0,open_buff,INDICATOR_DATA);
   SetIndexBuffer(1,high_buff,INDICATOR_DATA);
   SetIndexBuffer(2,low_buff,INDICATOR_DATA);
   SetIndexBuffer(3,close_buff,INDICATOR_DATA);
//— empty value
   PlotIndexSetDouble(0,PLOT_EMPTY_VALUE,0);
//—
   return(INIT_SUCCEEDED);
  }
//+——————————————————————+
//| Custom indicator iteration function                              |
//+——————————————————————+
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {
   ArraySetAsSeries(time,false);
//— the loop for the candlesticks that have not been handled yet
   for(int i=prev_calculated;i<rates_total;i++)
     {
      //— 0 by default
      open_buff[i]=0;
      close_buff[i]=0;
      high_buff[i]=0;
      low_buff[i]=0;
      //— check if any data is still present
      if(ind<size)
        {
         for(int j=ind;j<size;j++)
           {
            //— if dates coincide, the value from the file is used
            if(time[i]==cand_buff[j].date)
              {
               open_buff[i]=cand_buff[j].open;
               close_buff[i]=cand_buff[j].close;
               high_buff[i]=cand_buff[j].high;
               low_buff[i]=cand_buff[j].low;
               //— increase the counter
               ind=j+1;
               break;
              }
           }
        }
     }
//— return value of prev_calculated for next call
   return(rates_total);
  }

Leave a Reply

Your email address will not be published. Required fields are marked *

CAPTCHA


You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">