客服热线:18391752892
当前位置: 首页 » 外汇EA商城 » 智能交易 »在MetaTrader市场购买MetaTrader 4的'Account QuickReport 4' 交易程序库

在MetaTrader市场购买MetaTrader 4的'Account QuickReport 4' 交易程序库

品牌:
顺水的鱼外汇EA
起批 1-30000件 30001件以上
价格 3988.00 10.00
评分:
人气( 498 )  共有 0 条评价 ( 销量:0件 )

手机扫购有惊喜
物流:
:3988.00  
数量:
   
(当前库存 888888 件)
  • 收藏商品(0)
  • 告诉好友
  • 举 报
  • 顺水的鱼外汇EA

    发 货 地:
    默认地区
    全网同类推荐
    • ¥1100.00
    • ¥3988.00
    • ¥3988.00
    • ¥3988.00
    • ¥3988.00
    • ¥3988.00

    店长精品橱窗推荐

    本店商品分类

    • -暂无分类

    本店商品排行

    • 概述
    • 评论 (1)
    • 评论 (4)
    • 新特性

    Account QuickReport 4

    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;
         }
       //...
    }
    ta itemprop="image" content="https://c.mql5.com/31/179/account-quickreport-4-screen-2622.png" />

    因厂家更改商品包装、场地、附配件等不做提前通知,且每位咨询者购买、提问时间等不同。为此,客服给到的回复仅对提问者3天内有效,其他网友仅供参考!给您带来的不变还请谅解,谢谢!

     
    • 18391752892

      网站客服

      法定工作日

      8:30-17:30

    • 了解更多外汇信息

      微信扫描关注

    • 用户反馈