[Quantproject-developers] QuantProject/b7_Scripts/WalkForwardTesting/LinearRegression/Logging Anal
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2011-08-03 22:36:45
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/LinearRegression/Logging In directory vz-cvs-3.sog:/tmp/cvs-serv9388/b7_Scripts/WalkForwardTesting/LinearRegression/Logging Modified Files: AnalyzerForLinearRegressionTestingPositions.cs Log Message: bug fixed: now the private method getReturnIntervals() is computed properly Index: AnalyzerForLinearRegressionTestingPositions.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/LinearRegression/Logging/AnalyzerForLinearRegressionTestingPositions.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AnalyzerForLinearRegressionTestingPositions.cs 13 Feb 2011 19:42:11 -0000 1.3 --- AnalyzerForLinearRegressionTestingPositions.cs 3 Aug 2011 22:36:42 -0000 1.4 *************** *** 145,148 **** --- 145,149 ---- returnIntervals.Add( nextInterval ); } + returnIntervals.RemoveAt( returnIntervals.Count - 1 ); return returnIntervals; } |