var fDesc=new Array(); fDesc[0] = "The Walk Forward Analyzer uses MetaTrader's own Strategy Tester to perform a walk forward analysis, using the settings and testing parameters provided by the user. The program is easy to use, and can provide you with a complete walk forward analysis in a fraction of the time it would take for you to do it manually.

A walk forward analysis determines whether an expert advisor is profitable when trading with optimized parameters on out-of-sample data. Any expert advisor can produce an impressive optimization result, but the true test is whether those results will hold up when tested over future data. The Walk Forward Analyzer performs this process many times over months and years of historical data, giving you an accurate picture of the true performance of your expert advisor.

On completion of a walk forward analysis, you'll be presented with a detailed walk forward analysis report, showing the results of the testing and optimization runs, the total testing profit/loss, and the walk forward efficiency ratio, which is a measure of how robust your trading system is."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }