Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagGenomesDebugger
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25043/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagGenomesDebugger
Modified Files:
WFLagChosenPositionsDebugInfo.cs
Log Message:
- the Generation property has been added (First generation of the genetic optimizer, when the best genome was found)
Index: WFLagChosenPositionsDebugInfo.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagGenomesDebugger/WFLagChosenPositionsDebugInfo.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** WFLagChosenPositionsDebugInfo.cs 30 Jul 2006 13:45:54 -0000 1.4
--- WFLagChosenPositionsDebugInfo.cs 8 Aug 2006 09:44:12 -0000 1.5
***************
*** 61,64 ****
--- 61,72 ----
get { return this.wFLagLog.InSampleDays; }
}
+ /// <summary>
+ /// The number of the genetic optimizer's generation
+ /// when the corresponding genome was created
+ /// </summary>
+ public int Generation
+ {
+ get { return this.wFLagChosenPositions.Generation; }
+ }
public double InSampleSharpeRatio
{
|