Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/FixedLengthTwoPhases
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2900/b7_Scripts/WalkForwardTesting/FixedLengthTwoPhases
Modified Files:
FixedLengthTwoPhasesStrategy.cs
Log Message:
- the property DescriptionForLogFileName has been renamed to Description
- the property Description has been improved
Index: FixedLengthTwoPhasesStrategy.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/FixedLengthTwoPhases/FixedLengthTwoPhasesStrategy.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** FixedLengthTwoPhasesStrategy.cs 7 Feb 2008 18:42:05 -0000 1.3
--- FixedLengthTwoPhasesStrategy.cs 10 Feb 2008 14:21:57 -0000 1.4
***************
*** 76,87 ****
}
}
! public string DescriptionForLogFileName
{
get
{
string descriptionForLogFileName =
! "WFFLPT_" +
! "nmDysBtwnOptmztns_" + this.numDaysBeetweenEachOtpimization +
! "_iS_" + this.inSampleChooser.Description +
"_oS_longOnly";
return descriptionForLogFileName;
--- 76,89 ----
}
}
! public string Description
{
get
{
string descriptionForLogFileName =
! "Strtgy_fltp_" +
! "nmDysBtwnOptmztns_" +
! this.numDaysBeetweenEachOtpimization.ToString() + "_" +
! this.eligiblesSelector.Description + "_" +
! this.inSampleChooser.Description +
"_oS_longOnly";
return descriptionForLogFileName;
|