Mql5官网 Account QuickReport 4 外汇EA

Mql5官网 Account QuickReport 4 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站
Mql5官网 Account QuickReport 4 外汇EA
此内容为免费资源,请登录后查看
0积分
免费资源

如果免费资源下载的文件为TXT文档

请联系站长更新!站长微信:Lv596999  Telegram:@eapoj

“Mql5官网”板块的EA基本都有,大部分是无限制NODLL版,NODLL版本MT1420升级,大多数不可用!这些EA来源为国外花钱买过来的

有需要,请联系站长!

“EA测评”板块资源全部现有,看见不错的,可以联系站长看EA在确定是否收费

“无限制EA”板块,大部分免费,下载文件全部存在,都可以免费下载

站长硬盘EA太多,因大部分时间做交易,做风控,没太多时间更新下载地址,请谅解!

需要更新下载文件,请联系站长微信!国外朋友请联系Telegram。


A library for creating a brief trading report in a separate window.

Three report generation modes are supported:

  • For all trades.
  • For trades of the current instrument.
  • For trades on all instruments except the current one.

It features the ability to make reports on the deals with a certain magic number.

It is possible to set the time period of the report, to hide the account number and holder’s name, to write the report to an htm file.

The library is useful for fast assessment of the trading effectiveness of Expert Advisors, can be easily connected.

A similar product, AccountQuickReport 4 has been implemented as a ready-made script.

Example of connection to the script:

#property strict
#property script_show_inputs
//--- input parameters
enum RMod {all_symbol=0, only_current_symbol=1, excluding_current_symbol=2};
input RMod RepMode=0;               //symbols selection for report
input int days = 0;                 //number of days to report
input long MagicNr = 0;             //magic number selection for report
input bool htmCreate = false;       //create htm-file
input bool hide_Acc  = true;        //hide name and account number

#import "Account QuickReport 4.ex4"
void acQuickReport(int Days,int ReportMode,long MagicNumber,bool htmFileCreate,bool hide_name);
#import
//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart()
 {  int RepDays=days;
    if(RepDays<1 || RepDays>17000) RepDays=17000;
    acQuickReport(RepDays,(int)RepMode,MagicNr,htmCreate,hide_Acc);
 }
//+------------------------------------------------------------------+

Example of connection to the Expert Advisor:

#property strict
#import "Account QuickReport 4.ex4"
void acQuickReport(int Days,int ReportMode,long MagicNumber,bool htmFileCreate,bool hide_name);
#import
int RepDays;
//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
{   return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| ChartEvent function                                              |
//+------------------------------------------------------------------+
void OnChartEvent(const int id,
                  const long &lparam,
                  const double &dparam,
                  const string &sparam)
{  //...
   //alternately pressing Ctrl and 1 or 2 or 3 causes trade report in a separate window
   //1-for the current symbol, 2-all, 3-excluding current
   static long lparam_pre=-1;
   if(id==CHARTEVENT_KEYDOWN)
     {
      if(lparam_pre==17)
        {
          if(lparam==49) acQuickReport(90, 1, 0,false,true);
          else
          if(lparam==50) acQuickReport(90, 0, 0,false,true);
          else
          if(lparam==51) acQuickReport(90, 2, 0,false,true);
        }
      lparam_pre=lparam;
     }
   //...
}

图片[1]-Mql5官网 Account QuickReport 4 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站
图片[2]-Mql5官网 Account QuickReport 4 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站
图片[3]-Mql5官网 Account QuickReport 4 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站
图片[4]-Mql5官网 Account QuickReport 4 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站

© 版权声明
THE END
喜欢就支持一下吧
点赞20 分享
相关推荐