MQL4 - automated forex trading   /  

Forum

MetaTrader 5 Strategy Tester 3D Visualization

Back to topics list To post a new topic, please log in or register

avatar
Moderator
31069
MetaQuotes 2011.03.19 15:48 

In the latest build 419, we have included a new mode of 3D visualization of testing results.

Here is a quick video showing how the tester works:


To play it, set "Math calculations" mode to prevent transmission of historical data, and start testing of the following Expert Advisor with limits -3.00 to 3.00 and step equal to 0.025:

#property copyright "Copyright 2011, MetaQuotes Software Corp."
#property link      "http://www.mql5.com"
#property version   "1.00"
//--- input parameters
input double   x=-3.0;
input double   y=-3.0;
//+------------------------------------------------------------------+
//| Tester function                                                  |
//+------------------------------------------------------------------+
double OnTester()
  {
//---
   double res=MathExp(-x*x-y*y);
//---
   return(res);
  }

Here are some variants of visualization of mathematical calculations (MQ5 files):





Genetic Algorithms vs. Simple Search in the MetaTrader 4 Optimizer

Genetic Algorithms vs. Simple Search in the MetaTrader 4 Optimizer

The article compares the time and results of Expert Advisors' optimization using genetic algorithms and those obtained by simple search.


avatar
284
schnappi 2011.04.21 22:00 
Not bad guys, not bad...
Back to topics list  

To add comments, please log in or register