Update of /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19994/b4_Business/a2_Strategies
Modified Files:
EndOfDayStrategyBackTester.cs
Log Message:
The property DescriptionForLogFileName has been improved
Index: EndOfDayStrategyBackTester.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies/EndOfDayStrategyBackTester.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** EndOfDayStrategyBackTester.cs 19 Jan 2008 17:35:04 -0000 1.1
--- EndOfDayStrategyBackTester.cs 27 Jan 2008 02:27:46 -0000 1.2
***************
*** 23,26 ****
--- 23,27 ----
using System;
+ using QuantProject.ADT;
using QuantProject.ADT.FileManaging;
using QuantProject.ADT.Messaging;
***************
*** 89,95 ****
string description =
this.backTestID + "_" +
! "from_" + this.firstDateTime.ToShortDateString() + "_" +
! "to_" + this.lastDateTime.ToShortDateString() + "_" +
! "strtgy_" + this.endOfDayStrategy.DescriptionForLogFileName;
return description;
}
--- 90,98 ----
string description =
this.backTestID + "_" +
! "from_" +
! ExtendedDateTime.GetShortDescriptionForFileName( this.firstDateTime ) +
! "_to_" +
! ExtendedDateTime.GetShortDescriptionForFileName( this.lastDateTime ) +
! "_strtgy_" + this.endOfDayStrategy.DescriptionForLogFileName;
return description;
}
|