0

我想将结果导出到 CSV 文件。这是来自 MT4 的 iExposure 指标 (iExposure.mq4)。目前我知道如何将值导出到 CSV

这是我尝试使用的可以导出到 CSV 的代码。

int h1;
h1 = FileOpen("data3.csv", FILE_CSV | FILE_WRITE | FILE_READ, ',');
FileSeek( ExtSymbolsSummaries[i][DEALS]=0, ExtSymbolsSummaries[i],

 [BUY_PRICE]=0,ExtSymbolsSummaries[i][SELL_LOTS]=0 ,ExtSymbolsSummaries[i]  
[SELL_PRICE]=0,ExtSymbolsSummaries[i][NET_LOTS]=0, ExtSymbolsSummaries[i][PROFIT]=0, SEEK_END);
FileWrite(h1, Symbols[i]=SymbolName, ExtSymbolsSummaries[i][DEALS]=0, ExtSymbolsSummaries[i]
[BUY_PRICE]=0,ExtSymbolsSummaries[i][SELL_LOTS]=0 ,ExtSymbolsSummaries[i]  
[SELL_PRICE]=0,ExtSymbolsSummaries[i][NET_LOTS]=0, ExtSymbolsSummaries[i][PROFIT]=0 );
FileClose(h1)

这是原始代码:

     //+------------------------------------------------------------------+
//|                                                    iExposure.mq4 |
//|                      Copyright © 2007, MetaQuotes Software Corp. |
//|                                        http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2007, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net"

#property indicator_separate_window
#property indicator_buffers 1
#property indicator_minimum 0.0
#property indicator_maximum 0.1

#define SYMBOLS_MAX 1024
#define DEALS          0
#define BUY_LOTS       1
#define BUY_PRICE      2
#define SELL_LOTS      3
#define SELL_PRICE     4
#define NET_LOTS       5
#define PROFIT         6

extern color ExtColor=LightSeaGreen;

string ExtName="Exposure";
string ExtSymbols[SYMBOLS_MAX];
int    ExtSymbolsTotal=0;
double ExtSymbolsSummaries[SYMBOLS_MAX][7];
int    ExtLines=-1;
string ExtCols[8]={"Symbol",
                   "Deals",
                   "Buy lots",
                   "Buy price",
                   "Sell lots",
                   "Sell price",
                   "Net lots",
                   "Profit"};
int    ExtShifts[8]={ 10, 80, 130, 180, 260, 310, 390, 460 };
int    ExtVertShift=14;
double ExtMapBuffer[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
void init()
  {
    IndicatorShortName(ExtName);
   SetIndexBuffer(0,ExtMapBuffer);
   SetIndexStyle(0,DRAW_NONE);
   IndicatorDigits(0);
    SetIndexEmptyValue(0,0.0);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
void deinit()
  {
   int windex=WindowFind(ExtName);
   if(windex>0) ObjectsDeleteAll(windex);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
void start()
  {
   string name;
   int    i,col,line,windex=WindowFind(ExtName);
//----
   if(windex<0) return;
//---- header line
   if(ExtLines<0)
     {
      for(col=0; col<8; col++)
        {
         name="Head_"+col;
         if(ObjectCreate(name,OBJ_LABEL,windex,0,0))
           {
            ObjectSet(name,OBJPROP_XDISTANCE,ExtShifts[col]);
            ObjectSet(name,OBJPROP_YDISTANCE,ExtVertShift);
            ObjectSetText(name,ExtCols[col],9,"Arial",ExtColor);
           }
        }
      ExtLines=0;
     }
//----
   ArrayInitialize(ExtSymbolsSummaries,0.0);
   int total=Analyze();
   if(total>0)
     {
      line=0;
      for(i=0; i<ExtSymbolsTotal; i++)
        {
         if(ExtSymbolsSummaries[i][DEALS]<=0) continue;
         line++;
         //---- add line
         if(line>ExtLines)
           {
            int y_dist=ExtVertShift*(line+1)+1;
            for(col=0; col<8; col++)
              {
               name="Line_"+line+"_"+col;
               if(ObjectCreate(name,OBJ_LABEL,windex,0,0))
                 {
                  ObjectSet(name,OBJPROP_XDISTANCE,ExtShifts[col]);
                  ObjectSet(name,OBJPROP_YDISTANCE,y_dist);
                 }
              }
            ExtLines++;
           }
         //---- set line
         int    digits=MarketInfo(ExtSymbols[i],MODE_DIGITS);
         double buy_lots=ExtSymbolsSummaries[i][BUY_LOTS];
         double sell_lots=ExtSymbolsSummaries[i][SELL_LOTS];
         double buy_price=0.0;
         double sell_price=0.0;
         if(buy_lots!=0)  buy_price=ExtSymbolsSummaries[i][BUY_PRICE]/buy_lots;
         if(sell_lots!=0) sell_price=ExtSymbolsSummaries[i][SELL_PRICE]/sell_lots;
         name="Line_"+line+"_0";
         ObjectSetText(name,ExtSymbols[i],9,"Arial",ExtColor);
         name="Line_"+line+"_1";
         ObjectSetText(name,DoubleToStr(ExtSymbolsSummaries[i][DEALS],0),9,"Arial",ExtColor);
         name="Line_"+line+"_2";
         ObjectSetText(name,DoubleToStr(buy_lots,2),9,"Arial",ExtColor);
         name="Line_"+line+"_3";
         ObjectSetText(name,DoubleToStr(buy_price,digits),9,"Arial",ExtColor);
         name="Line_"+line+"_4";
         ObjectSetText(name,DoubleToStr(sell_lots,2),9,"Arial",ExtColor);
         name="Line_"+line+"_5";
         ObjectSetText(name,DoubleToStr(sell_price,digits),9,"Arial",ExtColor);
         name="Line_"+line+"_6";
         ObjectSetText(name,DoubleToStr(buy_lots-sell_lots,2),9,"Arial",ExtColor);
         name="Line_"+line+"_7";
         ObjectSetText(name,DoubleToStr(ExtSymbolsSummaries[i][PROFIT],2),9,"Arial",ExtColor);
        }
     }
//---- remove lines
   if(total<ExtLines)
     {
      for(line=ExtLines; line>total; line--)
        {
         name="Line_"+line+"_0                                    ";
         ObjectSetText(name,"");
         name="Line_"+line+"_1";
         ObjectSetText(name,"");
         name="Line_"+line+"_2";
         ObjectSetText(name,"");
         name="Line_"+line+"_3";
         ObjectSetText(name,"");
         name="Line_"+line+"_4";
         ObjectSetText(name,"");
         name="Line_"+line+"_5";
         ObjectSetText(name,"");
         name="Line_"+line+"_6";
         ObjectSetText(name,"","                       ");
         name="Line_"+line+"_7";
         ObjectSetText(name,"","                           ");
        }
     }
//---- to avoid minimum==maximum
   ExtMapBuffer[Bars-1]=-1;
//----
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Analyze()
  {
   double profit;
   int    i,index,type,total=OrdersTotal();
//----
   for(i=0; i<total; i++)
     {
      if(!OrderSelect(i,SELECT_BY_POS)) continue;
      type=OrderType();
      if(type!=OP_BUY && type!=OP_SELL) continue;
      index=SymbolsIndex(OrderSymbol());
      if(index<0 || index>=SYMBOLS_MAX) continue;
      //----
      ExtSymbolsSummaries[index][DEALS]++;
      profit=OrderProfit()+OrderCommission()+OrderSwap();
      ExtSymbolsSummaries[index][PROFIT]+=profit;
      if(type==OP_BUY)
        {
         ExtSymbolsSummaries[index][BUY_LOTS]+=OrderLots();
         ExtSymbolsSummaries[index][BUY_PRICE]+=OrderOpenPrice()*OrderLots();
        }
      else
        {
         ExtSymbolsSummaries[index][SELL_LOTS]+=OrderLots();
         ExtSymbolsSummaries[index][SELL_PRICE]+=OrderOpenPrice()*OrderLots();
        }
     }
//----
   total=0;
   for(i=0; i<ExtSymbolsTotal; i++)
     {
      if(ExtSymbolsSummaries[i][DEALS]>0) total++;
     }
//----
   return(total);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int SymbolsIndex(string SymbolName)
  {
   bool found=false;
//----
   for(int i=0; i<ExtSymbolsTotal; i++)
     {
      if(SymbolName==ExtSymbols[i])
        {
         found=true;
         break;
        }
     }
//----
   if(found) return(i);
   if(ExtSymbolsTotal>=SYMBOLS_MAX) return(-1);
//----
   i=ExtSymbolsTotal;
   ExtSymbolsTotal++;
   ExtSymbols[i]=SymbolName;
   ExtSymbolsSummaries[i][DEALS]=0;
   ExtSymbolsSummaries[i][BUY_LOTS]=0;
   ExtSymbolsSummaries[i][BUY_PRICE]=0;
   ExtSymbolsSummaries[i][SELL_LOTS]=0;
   ExtSymbolsSummaries[i][SELL_PRICE]=0;
   ExtSymbolsSummaries[i][NET_LOTS]=0;
   ExtSymbolsSummaries[i][PROFIT]=0;




//----
   return(i);
  }



//+------------------------------------------------------------------+

代码结束

4

1 回答 1

0

CSV 输出示例:

对于这个例子,我将描述一种实现以下目标的方法:

  1. 为文件夹和 CSV 文件名添加输入字符串。
  2. 创建一个用于生成 CSV 的按钮。
  3. 监听事件,以便我们可以检测按钮何时被点击。
  4. 解析对象列表并将对象的名称和描述写入 CSV 文件。

注意:如果您无法完成第 2 步,请跳到第 3 步,并查看 中的代码OnChartEvent(),然后在您要编写 CSV 文件时对其进行自定义。但是,请注意,如果您在每次OnCalculate()事件发生时都写入文件,则会写入大量文件。

由于iExposure.mq4默认情况下可用(至少对于版本:4.0 Build 765),让我们从创建原始副本开始。我将我的示例命名为 iExposureTest。

第 1 步:为我们的文件夹和 CSV 文件添加输入字符串。

这是我们最简单的步骤之一,只需为我们的文件夹和 CSV 文件添加输入字符串。我在另一个输入变量旁边添加了这些。

//Step 1
input string  InputFileName="iExposure.csv";      // File name
input string  InputDirectoryName="Data";     // Folder name

第 2 步:创建 CSV 按钮。

包括ChartObjectPanel.mqh. 我选择将包含行直接放在输入变量的上方。

//Part of Step 2
#include <ChartObjects\ChartObjectPanel.mqh>

这为我们提供了创建CChartObjectButton类型的访问权限,并且我们将需要访问Globally此示例的按钮,因此在之前添加下一行代码OnInit()

//Part of Step 2
CChartObjectButton CSVButton;

我们有一个按钮类型CChartObjectButton,但它还没有被实例化。让我们使用我们调用的函数来做到这一点OnInit()

在里面OnInit(),在下面添加:

//Part of Step 2
CreateCSVButton(0);

现在我们需要实际的函数,所以我们在指标代码的最后添加这个函数。

//Part of Step 2
bool CreateCSVButton(const long chart_ID=0)
{ 
     //--- reset the error value
     ResetLastError();

     //--- set property values
     if(!CSVButton.Create(0,"CSVButton",0,10,25,75,15))
     {
         //--- display the error message in Experts journal
         Print(__FUNCTION__+", Error Code = ",GetLastError());
         return(false);
     }

     CSVButton.Description("CSV");

     CSVButton.FontSize(10);
     CSVButton.Corner(CORNER_LEFT_LOWER);
     CSVButton.Anchor(ANCHOR_CENTER);

     CSVButton.State(false);

     return true;
} 

此时,当我们编译时,窗口上应该有一个可用的 CSV 按钮。这主要是为了让我们可以通过单击生成 CSV。它应该类似于下图。

CSV 按钮

如果您有 CSV 按钮,那么我们完成了第 2 步。

第 3 步:侦听事件并捕获单击了 CSV 按钮。

我们可以使用内置的OnChartEvent().

在 ourOnChartEvent()中,我们正在检查事件是否是CHARTEVENT_OBJECT_CLICK事件,然后如果sparam等于 ourCSVButton并且按钮状态为 true,我们将执行文件工作。

另外,请注意我们调用了WriteCSVObjects我们传递给的尚不存在的函数file_handle。我们将在第 4 步中创建它。

  //step 3
  void OnChartEvent(const int id,
                    const long &lparam,
                    const double &dparam,
                    const string &sparam)
    {

     if(id==CHARTEVENT_OBJECT_CLICK)
       {  
           if (sparam=="CSVButton") 
           {
              if(CSVButton.State() == true)
              {

                 ResetLastError();

                 int file_handle=FileOpen(InputDirectoryName+"//"+InputFileName,FILE_READ|FILE_WRITE|FILE_CSV);

                 if(file_handle!=INVALID_HANDLE)
                 {
                    PrintFormat("%s file is available for writing",InputFileName);
                    PrintFormat("File path: %s\\Files\\",TerminalInfoString(TERMINAL_DATA_PATH));

                    //Call Step 4  
                    WriteCSVObjects(file_handle);   

                    //--- close the file
                    FileClose(file_handle);

                    PrintFormat("Data is written, %s file is closed",InputFileName);

                 }
                 else
                 {
                    PrintFormat("Failed to open %s file, Error code = %d",InputFileName,GetLastError());
                 }

              }

              ChartRedraw();
           }

       }
    }

第 4 步:解析对象列表并将名称和描述写入 CSV。

差不多好了!这是解决您问题的最后一部分。将此函数添加到我们的代码示例的末尾。

  //Step 4
  void WriteCSVObjects(int file_hand)
  {
     int obj_total=ObjectsTotal();
     string name;
     string desc;

     for(int i=obj_total;i>=0;i--)
      {
        name = ObjectName(i);
        desc = ObjectDescription(name);

        if(name == "")
        {
         name = "Empty Name";
        }

        if(desc == "")
        {
         desc = "Empty Desc";
        }
        FileWrite(file_hand, name + "," + desc);    
      }
  }

在上面的函数中,请注意我们正在循环对象并写出每个对象的名称和描述。输出和对象的顺序可能不是您的目标,因此请进行相应修改。

此时,当我们编译并单击 CSV 按钮时,它应该将值生成到存储在 .csv 文件中的 CSV 文件中Files//Data//iExposure.csv

于 2015-03-03T03:31:17.003 回答