[Quantproject-developers] QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagDebugger
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2006-07-22 20:33:07
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagDebugger In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv473/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagDebugger Modified Files: WFLagReportDebugger.cs Log Message: - the WFLagDebugGenome constructor now requires also the number of in sample days and the benchmark; furthermore, the WFLagChosenPositions are passed instead of a WFLagLog Index: WFLagReportDebugger.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagDebugger/WFLagReportDebugger.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** WFLagReportDebugger.cs 14 May 2006 21:14:50 -0000 1.2 --- WFLagReportDebugger.cs 22 Jul 2006 20:33:04 -0000 1.3 *************** *** 91,96 **** this.getRowDateTime( (DataGrid)sender , rowNumber ); WFLagDebugGenome wFLagDebugGenome = ! new WFLagDebugGenome( transactionDateTime , ! this.wFLagLog ); wFLagDebugGenome.Show(); } --- 91,96 ---- this.getRowDateTime( (DataGrid)sender , rowNumber ); WFLagDebugGenome wFLagDebugGenome = ! new WFLagDebugGenome( this.wFLagLog.GetChosenPositions( transactionDateTime ) , ! this.wFLagLog.InSampleDays , this.wFLagLog.Benchmark ); wFLagDebugGenome.Show(); } |