Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23091/b7_Scripts/WalkForwardTesting/WalkForwardLag
Modified Files:
WFLagCandidates.cs
Log Message:
Minor change: closeToCloseTickerReturns saves an useless element.
Index: WFLagCandidates.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagCandidates.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** WFLagCandidates.cs 14 Mar 2006 15:01:23 -0000 1.1
--- WFLagCandidates.cs 8 Apr 2006 18:38:31 -0000 1.2
***************
*** 76,80 ****
tickerQuotes , "quAdjustedClose");
float[] closeToCloseTickerReturns =
! new float[ tickerAdjustedCloses.Length ];
int i = 0; //index for ratesOfReturns array
for( int idx = 0 ; idx < tickerAdjustedCloses.Length - 1 ; idx++ )
--- 76,80 ----
tickerQuotes , "quAdjustedClose");
float[] closeToCloseTickerReturns =
! new float[ tickerAdjustedCloses.Length - 1 ];
int i = 0; //index for ratesOfReturns array
for( int idx = 0 ; idx < tickerAdjustedCloses.Length - 1 ; idx++ )
|