| / | Articles |
Articles
Tester
Testing Visualization: Trade History
To post a new article, please log in or register
|
Testing Visualization: Trade History1. MotivationStarting from build 196, MetaTrader 4 Client Terminal offers testing visualization function. It allows controlling the Expert Advisors' testing on a brand new level. Now, the trading programmer can watch every action of his or her Expert Advisor checking its operation on history!You can read about how to use the visualizer in Testing of Expert Advisors in the MetaTrader 4 Client Terminal: An Outward Glance. In my previous article named Testing Visualization: Functionality Enhancement, it was described how to realize the "Trade" tab for testing. We will add the "Account History" tab to it here. 2. The Task and How to Realize ItFirst of all, we will have to reconcile ourselves to that we cannot create a shadow copy of the "Account History". To create it, we would have to write a complicate program using dlls. But we do not need this at all since the "Test Results" tab of the Tester contains almost the full information about operations made. Our task is to display actual information. This can be very
convenient when analyzing the Expert Advisor's work. There will be no
need to switch between tabs all the time. What is left, is to remind that, to create a subwindow where the
history will be displayed, it is necessary to create an indicator and,
having attached it to the chart, create the template named tester.tpl
or in the template <expert_name>.tpl (you can download the indicator directly from this article). ![]() Saving a Template for Testing
Now we can start to prepare the Expert Advisor. This is not very difficult either: You can download the ready Expert Advisor here. 3. TestingNow, let us try to test the new Expert. For this, open the Strategy Tester window, select the CrossMACD_DeLuxe_VisualHistory in the Expert's menu and press its properties button. ![]() Strategy Tester Window The Expert has got some new external variables - they are declared in an included file named VisualTestingTools.mq4. Some of them are intended for controlling the "Terminal" tab, the other ones - for the "Account History" tab, but most of them are common: - TerminalRows - the maximum amount of the "Terminal" tab lines to be displayed. If you make TerminalRows = 0, the terminal will not be updated; - HistoryRows - the maximum amount of the "Account History" lines to be displayed. If you make HistoryRows = 0, the account history will not be updated; - BigText - set true if you want to make the fonts larger; - SignalPoints - the distance, in points, starting from which the Stop Loss, Stop Profit and Open Price fields of pending orders will be highlighted. For example, if SignalPoints = 10, the Stop Loss field will change its color when the price is at a 10-point distance from the Stop Loss of the position; - ShowCancelled - set true if you want to see the cancelled orders in your trade history; - ShowExpired - set true if you want to see expired pending orders in your trade history; - MainColor - color of headlines of the Terminal and Account History, as well as the Terminal's trade account information bar (Balance, Equity, ...). - BuyColor - color of information about Buy positions; - BuyOPColor - color of the Open Price field of the Terminal tab; this color will replace the main color when the current price approaches to the open level of orders Buy Stop and Buy Limit; - BuySLColor - for the Terminal tab: color, which will replace the main color when the price approaches the Stop Loss levels of Buy positions; for the Account History tab: color, which will replace the main color if the Buy position has been closed by StopLoss; - BuyTPColor - the same as BuySLColor applied to the Take Profit of positions; - SellOPColor, SellSLColor and SellTPColor - the same for Sell positions. Set the desired values of variables and press OK. Check whether Visualization is enabled and start testing: ![]() Testing Visualization: 'Terminal' and 'Account History' windows have been loaded ![]() The EA has opened a position, and this is visualized in the 'Terminal' window ![]() As soon as the position has been closed, it moved to the 'Account History' and was replaced with another one. Note that the StopLoss field is highlighted in red - the position was closed by Stop Loss. ![]() the second position has been closed by Take Profit. Note that the latest positions are shown on top in the Account History. Thus, we will always see the most recent events. ![]() This is how our virtual Terminal looks after several minutes.
The problem described in my article Testing Visualization: Functionality Enhancement applies to the vHistory
indicator, as well: If the indicator is not in the second
subwindow in the template used by the Tester, the proper operation of
functions responsible for Account History updating should be provided
by the explicitly specified subwindow number: vHistory_win = WindowFind( "vHistory" ); if ( IsTesting() ) { vHistory_win = 2; } 5. ConclusionScreenshots that illustrate how the Account History tab looks in various situations are given below. ![]() ![]() ![]() Translated from Russian by MetaQuotes Software Corp. Original article: http://articles.mql4.com/ru/191 Attachments:
Warning:
All rights to these materials are reserved by MetaQuotes Software Corp.
Copying or reprinting of these materials in whole or in part is prohibited.
Craig wrote: Thank you, Craig. As I replied to cnotation, I try to do my best. ))Yeah, good job, in fact I didn't even notice when I read though the first time that it had been translated. If I read it very carefully some of the phrases are a little odd, but overall a huge improvement!
2007.01.26 08:09 maria
cnotation wrote: Thank YOU very much! The feedback is very important for us. There is not so much
text, though. I suppose reading the articles like "My First Grail" or
"What Is a Martingale" where there are no or just a few pictures, but much text, you would probably
say it's more difficult to read. But I try to do my best. ))Maria, You did an excellent job translating the article. Thank you very much.
2007.01.26 08:08 maria
Yeah, good job, in fact I didn't even notice when I read though the first time that
it had been translated.
If I read it very carefully some of the phrases are a little odd, but overall a huge improvement!
2007.01.19 22:18 Craig
Maria,
You did an excellent job translating the article. Thank you very much.
2007.01.19 01:35 cnotation
Craig wrote: Is it read ok (I mean readability of translation)?Dude, that is f**kin cool! Translator
2007.01.18 11:19 maria
6 comments
|