Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv16369/b7_Scripts/WalkForwardTesting/WalkForwardLag
Modified Files:
WFLagEndOfDayTimerHandler.cs
Log Message:
- the number of elegible tickers was written to the console. Now it is written to a text file too.
Index: WFLagEndOfDayTimerHandler.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagEndOfDayTimerHandler.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** WFLagEndOfDayTimerHandler.cs 31 May 2006 14:17:47 -0000 1.3
--- WFLagEndOfDayTimerHandler.cs 18 Jun 2006 14:13:30 -0000 1.4
***************
*** 363,368 ****
{
this.eligibleTickers.SetTickers();
! Console.WriteLine( "Number of Eligible tickers: " +
! this.eligibleTickers.EligibleTickers.Rows.Count );
this.chosenTickers.SetSignedTickers( this.eligibleTickers );
this.NewChosenTickers( this ,
--- 363,371 ----
{
this.eligibleTickers.SetTickers();
! string outputMessage = "Number of Eligible tickers: " +
! this.eligibleTickers.EligibleTickers.Rows.Count;
! RunWalkForwardLag.WriteToTextLog( outputMessage );
! // Console.WriteLine( "Number of Eligible tickers: " +
! // this.eligibleTickers.EligibleTickers.Rows.Count );
this.chosenTickers.SetSignedTickers( this.eligibleTickers );
this.NewChosenTickers( this ,
|