FileWriteFloat

この関数は、ファイルポインターの現在の位置から開始して、floatパラメーターの値をbin-fileに書き込みます。

uint  FileWriteFloat(
   int    file_handle,     // File handle
   float  value            // Value to be written
   );

パラメーター

file_handle

[入力] FileOpen()によって返されるファイル記述子。

[入力] float型の値。

戻り値

成功した場合、関数は書き込まれたバイト数を返します。エラーの場合は0を返します。成功した場合、書き込まれたバイト数はデータ型のサイズ(sizeof(float)= 4)に対応します。エラーに関する情報を取得するには、GetLastError()関数を呼び出します。ファイルポインターは、同じバイト数だけシフトされます。

例:

//+——————————————————————+
//|                                          Demo_FileWriteFloat.mq5 |
//|                        Copyright 2013, MetaQuotes Software Corp. |
//|                                              https://www.mql5.com |
//+——————————————————————+
#property copyright “Copyright 2013, MetaQuotes Software Corp.”
#property link      “https://www.mql5.com”
#property version   “1.00”
//— show the window of input parameters when launching the script
#property script_show_inputs
//— parameters for receiving data from the terminal
input string          InpSymbolName=“EURUSD”;           // currency pair
input ENUM_TIMEFRAMES InpSymbolPeriod=PERIOD_M15;       // time frame
input datetime        InpDateStart=D’2013.01.01 00:00′; // data copying start date
//— parameters for writing data to the file
input string          InpFileName=“Close.bin”// file name
input string          InpDirectoryName=“Data”// directory name
//+——————————————————————+
//| Script program start function                                    |
//+——————————————————————+
void OnStart()
  {
   datetime date_finish=TimeCurrent();
   double   close_buff[];
   datetime time_buff[];
   int      size;
//— reset the error value
   ResetLastError();
//— copy the close price for each bar
   if(CopyClose(InpSymbolName,InpSymbolPeriod,InpDateStart,date_finish,close_buff)==-1)
     {
      PrintFormat(“Failed to copy close price values. Error code = %d”,GetLastError());
      return;
     }
//— copy the time for each bar
   if(CopyTime(InpSymbolName,InpSymbolPeriod,InpDateStart,date_finish,time_buff)==-1)
     {
      PrintFormat(“Failed to copy the time values. Error code = %d”,GetLastError());
      return;
     }
//— receive the buffer size
   size=ArraySize(close_buff);
//— open the file for writing the values (if the file is absent, it will be created automatically)
   ResetLastError();
   int file_handle=FileOpen(InpDirectoryName+“//”+InpFileName,FILE_READ|FILE_WRITE|FILE_BIN);
   if(file_handle!=INVALID_HANDLE)
     {
      PrintFormat(“%s file is open for writing”,InpFileName);
      PrintFormat(“File path: %s\\Files\\”,TerminalInfoString(TERMINAL_DATA_PATH));
      //— write close prices’ time and values to the file
      for(int i=0;i<size;i++)
        {
         uint byteswritten=FileWriteDouble(file_handle,(double)time_buff[i]);
         //— check the number of bytes written
         if(byteswritten!=sizeof(double))
           {
            PrintFormat(“Error in FileWriteDouble. Error code=%d”,GetLastError());
            //— close the file
            FileClose(file_handle);
            return;
           }
         byteswritten=FileWriteFloat(file_handle,(float)close_buff[i]);
         //— check the number of bytes written
         if(byteswritten!=sizeof(float))
           {
            PrintFormat(“Error in FileWriteDouble. Error code=%d”,GetLastError());
            //— close the file
            FileClose(file_handle);
            return;
           }
        }
      //— close the file
      FileClose(file_handle);
      PrintFormat(“Data is written, %s file is closed”,InpFileName);
     }
   else
      PrintFormat(“Failed to open %s file, Error code = %d”,InpFileName,GetLastError());
  }

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="">