[Quantproject-developers] QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag RunWalkForward
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2006-09-20 21:11:55
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv29413/b7_Scripts/WalkForwardTesting/WalkForwardLag Modified Files: RunWalkForwardLag.cs Log Message: A statement is used to avoid too many output Console output when a small populations are chosen. I don't like this implementation... a different approach should be taken. To do. Index: RunWalkForwardLag.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/RunWalkForwardLag.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RunWalkForwardLag.cs 21 Jun 2006 17:25:41 -0000 1.5 --- RunWalkForwardLag.cs 20 Sep 2006 21:11:45 -0000 1.6 *************** *** 151,164 **** if ( !(this.InSampleNewProgress == null) ) this.InSampleNewProgress( this , eventArgs ); ! // Console.WriteLine( ! // eventArgs.CurrentProgress.ToString() + " / " + ! // eventArgs.Goal.ToString() + ! // " - " + ! // DateTime.Now.ToString() ); ! RunWalkForwardLag.WriteToTextLog( ! eventArgs.CurrentProgress.ToString() + " / " + ! eventArgs.Goal.ToString() + ! " - " + ! DateTime.Now.ToString() ); } private void run_initializeProgressHandlers() --- 151,163 ---- if ( !(this.InSampleNewProgress == null) ) this.InSampleNewProgress( this , eventArgs ); ! // the following if statement is used to avoid too many output ! // when small populations are chosen. Comment it out ! // when large populations are chosen ! if ( eventArgs.CurrentProgress % 20 == 0 ) ! RunWalkForwardLag.WriteToTextLog( ! eventArgs.CurrentProgress.ToString() + " / " + ! eventArgs.Goal.ToString() + ! " - " + ! DateTime.Now.ToString() ); } private void run_initializeProgressHandlers() |