Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv2840/b7_Scripts/WalkForwardTesting/WalkForwardLag
Modified Files:
WFLagCandidates.cs
Log Message:
The Count property has been added
Index: WFLagCandidates.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagCandidates.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** WFLagCandidates.cs 30 Jul 2006 13:53:26 -0000 1.4
--- WFLagCandidates.cs 8 Oct 2006 16:10:45 -0000 1.5
***************
*** 41,44 ****
--- 41,52 ----
private Hashtable closeToCloseReturns;
+ /// <summary>
+ /// Number of eligible tickers
+ /// </summary>
+ public int Count
+ {
+ get { return this.eligibleTickers.Rows.Count; }
+ }
+
public WFLagCandidates( DataTable eligibleTickers ,
DateTime firstQuoteDate , DateTime lastQuoteDate )
|