Monday, May 25, 2015

MetaTrader 4 Client Terminal build 825

MT4 Build 825 started today 25 May 2015 (Monday)
Some broker was affected by the update. Their tick/ market did not start on time. If your MT4 build is still 765, don't worry, it will still work fine.

Below is some information provided by Metaquotes on client end new features.

MetaTrader 4 Client Terminal build 825
  1. Market: The new feature in MetaTrader Market allows providing products for rent for 1, 3, 6 or 12 months. This provides undeniable advantages both for developers and buyers. Sellers can significantly increase user confidence in their products, giving the customer a chance to thoroughly test the product functionality at a low cost. For buyers, the rent provides another opportunity to assess a product before purchasing it. Unlike demo versions, rented products have no limitations except for validity period.

    Any developer in the Market may choose whether or not to provide their products for rent, and what will be the cost of this rent.

    Developers may choose not to offer their products for rent and only sell full licenses for unlimited use.

    If rent is enabled for a product, its web page shows possible options: rental period and price. Click "Rent" and select the rental period.

    After expiration, you can further renew the product rental period or purchase an unlimited version of the product.
  2. Market: We are introducing a new mechanism of "direct" purchasing. Purchasing a trading robot or an indicator from the Market is now even easier, and you do not even need an MQL5.community account.

    One-Step Purchase
    A user doesn't need to log in to an MQL5.community account and add money to it. A payment for a product can now be made straight from the platform using one of the available payment systems. To maintain a clear and unified history of purchases from the Market, the required amount will be first transfered to your MQL5.community account, from which a payment for the product will be made.

    You can easily access and review all your payments from your MQL5.community Profile.

    Purchase without Registration
    A product from the Market can be purchased without an MQL5.community account. Click "Buy" and pay for the product using one of the available payment systems.

    Then you will be redirected to the payment system web page to complete your purchase.

    After that, we strongly recommend you to register an account on MQL5.community, and your purchase will be automatically linked to it. This enables you to update the product and install it on multiple computers.
  3. Tester: The Strategy Tester now allows testing not only Expert Advisors, but also indicators. This can be done in the visual testing mode. The behavior of the indicator is shown on a chart, which is plotted based on a sequences of ticks emulated in the tester.

    This feature is especially useful for the users who want to purchase an indicator from the MetaTrader Market. Before purchasing an indicator, you can download a free trial version and evaluate its backtest performance in the strategy tester.

    Select the type of the program - "Indicators", then select the indicator and click "Start".
  4. Hosting: Multiple improvements and fixes have been implemented in the Virtual Hosting service.

    The major changes apply to operation in Wine on computers running Linux and Mac OS. All the functions are available for allocated virtual servers in Wine, including migration, performance monitoring and logs.


    The operation of the Log has also changed. If a user requests too many entries then only part of the first logs for the specified period will be downloaded. This prevents performance degradation resulting from large logs. If you want to download further logs, you no longer need to change the request period. Simply select the last row in the log viewer window and press PgDn.

  5. Terminal: The Market Watch window now features the current spread of a symbol. Enable the spread information from the context menu.

  6. Terminal: Added filtering of news by categories. Now you can customize the list of news to your convenience. If a news category contains subcategories, an additional dialog can be opened from the context menu, where you can configure the list of news.

  7. Terminal: Fixed crash of the client terminal when canceling computer turn off in Windows 7.
  8. Terminal: The terminal interface has been further adapted for high resolution screens (4K).
  9. Terminal: Fixed display of the "One Click Trading" panel on the chart.
  10. Terminal: Fixed display of a graphical object set by a custom indicator, if the object is only to be displayed on some of the timeframes.
  11. Terminal: Fixed terminal freezing during Search in MQL5 programs.
  12. Terminal: Fixed drawing of Bitmap Label objects when using a .bmp file fragment.
  13. Terminal: Fixed display of filled graphical objects "Channels".
  14. Terminal: A new parameter DDE TIMESEC for sending quotes over DDE. This parameter allows receiving the quote arrival time to the nearest second.
  15. Terminal: Fixed an error that could occasionally lead to launch of multiple terminal instances from one directory.
  16. Terminal: Fixed occasional crash of the client terminal in Windows 10.
  17. Terminal: Added Thai, Malay and Slovenian translation of the interface. Updated translation onto German and Hungarian.
  18. MQL4: To provide higher flexibility in the interaction with various web services, a new form of the WebRequest function has been added. It allows sending requests of any type with a custom set of headers specified:
    int  WebRequest(
       const string      method,           // HTTP method
       const string      url,              // url address
       const string      headers,          // Headers 
       int               timeout,          // timeout
       const char        &data[],          // an array of the body of the HTTP message
       char              &result[],        // an array with the server response data
       string            &result_headers   // Headers of the server response
       );
    Error notifications have been modified. If an error occurs, the 'result' array will contain the description of the error.
  19. MQL4: New function GetMicrosecondCount returns the number of microseconds that have passed since the start of the MQL4 program:
    ulong  GetMicrosecondCount();
    This function can be used to profile program execution and identify "bottlenecks".
  20. MQL4: In order to prevent tested Expert Advisors from "looking into the future", the FileOpenHistory function is prohibited in the tester.
  21. MQL4: New signal property in the ENUM_SIGNAL_BASE_STRING enumeration - SIGNAL_BASE_CURRENCY which means the signal provider's deposit currency. The property can be received via the SignalBaseGetString function.
  22. MQL4: New chart property in the ENUM_CHART_PROPERTY enumeration - CHART_SHOW_ONE_CLICK which means the display of the "One Click Trading" panel on a chart. The property can be received via the ChartGetInteger function.
  23. MQL4: Fixed calculation of the indicator subwindow size when using #property indicator_separate_window.
  24. MQL4: Fixed Expert Advisor deinitialization errors when changing the chart template.
  25. MQL4: Fixed behavior of the CopyTime function. For example, before the update, CopyTime call for D1 from 23:00 December 1, 2014 to 01:00 December 3, 2014 returned three bars: December 1, 2, and 3 of 2014. After the update the function returns two bars: December 2 and 3, 2014.
  26. MQL5: Fixed access to offline charts from MQL4 programs.
  27. MQL4: Fixed operation of the SeriesInfoInteger function in the strategy tester.
  28. MQL4: Fixed the value returned by the ChartNext function during testing. This function does not work in the Strategy Tester, now its call returns the value of -1 instead of 0.
  29. MQL4: Fixed downloading of resources from EX4 files in the Libraries directory. Download of resources from library files did not work properly before the update.
  30. MQL4: Fixed occasional errors in the results of the ChartXYToTimePrice and ChartTimePriceToXY functions.
  31. MQL4: Fixed generation of CHARTEVENT_OBJECT_DRAG. Now the event is generated once dragging is completed, not at the beginning of it.
  32. MQL4: Fixed generation of CHARTEVENT_CHART_CHANGE in custom indicators when moving a chart.
  33. MQL4: Fixed use of global variables with long names (over 63 characters).
  34. MQL4: Fixed some bugs in the compilation of macros.
  35. MQL4: Fixed call of the DLL functions that return structures and strings.
  36. MetaEditor: Fixed formatting of variable descriptions in the drop down list of function parameters in MetaAssist.
  37. Fixed errors reported in crash logs.


5 comments:

  1. Forex buying and selling signal enter proposal on the pair of currencies, typically at a special rate and time. Foreign exchange signals are generated by means of a human analyst or automatic foreign exchange indicators provider subscribers. Due to the nature of the signal in time and typically are communicated via electronic mail, internet, sms, rss, twitter web site or different relatively easy.
    Take gain of the forex signals is that united states foreign exchange signal as a way to assist the provider to reduce the strain, they come upon in circulation could be a a hit trader with our strategy. United states forex signals via the net carrier "signal" that uses innovative technology to decorate your buying and selling enjoy. Observe the contributors of america forex signalsand its implementation for earnings foreign exchange trade sign handiest. Individuals of our indicators do no longer need to consider the approach, market and opposition analyzes, financial, or different statistics. All that is natural and accurate USA Foreign exchange sign group with a touch of revel in and professionalism, approach and method. All of the features and professionalism foreign exchange signal issuer highlights united states of america forex signal awesome carrier. Inside the beyond, successive achievement progresses are a supply of thought to head forward as a hero win inforeign exchange signals

    ReplyDelete
  2. Superb article, thanks for sharing.
    Below check out the platform for currencies to explore information on digital currencies. Mt5 demo account

    ReplyDelete
  3. Superb article, thanks for sharing.
    Below check out the platform for currencies to explore information on digital currencies.Meta Trader 5 Tool



    ReplyDelete
  4. Wij houden van bedrijfsfinanciering en financieren van particulieren, bedrijven en bedrijven tegen een lage rente. Mocht je interesse hebben, neem dan zo vriendelijk contact met mij op voor meer informatie e-mail: alexcredit40@gmail.com

    ReplyDelete
  5. MY BEST TRADING EXPERIENCE EVER
    I rarely share my story with people online and those I don't know, not only because it put me at the lowest point ever but because it made me a person of ridicule among family and some of my friends. I put all I had into Binary Options ($190,000) after hearing great testimonies about this new investment strategy. I was made to believe my investment would be triple, it started good and I got returns (not up to what I had invested). Gathered more and involved a couple family members, but I didn't know I was setting myself up for the kill, in less than no time all we had put ($420,000) was gone. It almost seem I had set them up, they came at me strong and hard. After searching and looking for how to make those scums pay back, I got introduced to Mr Lewis a recovery agent who helped recover about 80% of my lost funds within a month and I was very happy so catch him up for your lost funds with Email address: Joelewis4755 @ gmail. com or on whatsapp via +1(623)226-7303

    ReplyDelete