[Quantproject-developers] QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagDebugger/W
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2010-03-28 15:28:37
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagDebugger/WFLagDebugPositions In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv13063/WalkForwardTesting/WalkForwardLag/WFLagDebugger/WFLagDebugPositions Modified Files: WFLagDebugPositionsEndOfDayTimerHandler.cs Log Message: The code has been changed because now WeightedPositions is a List<WeightedPosition>, while in the previous version they it was a SortedList Index: WFLagDebugPositionsEndOfDayTimerHandler.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagDebugger/WFLagDebugPositions/WFLagDebugPositionsEndOfDayTimerHandler.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** WFLagDebugPositionsEndOfDayTimerHandler.cs 29 Sep 2008 21:20:54 -0000 1.4 --- WFLagDebugPositionsEndOfDayTimerHandler.cs 28 Mar 2010 15:28:28 -0000 1.5 *************** *** 54,58 **** DateTime today = this.account.Timer.GetCurrentDateTime(); foreach ( WeightedPosition weightedPosition in ! this.wFLagWeightedPositions.DrivingWeightedPositions.Values ) todayTotalGain += weightedPosition.GetCloseToCloseDailyReturn( today ); --- 54,58 ---- DateTime today = this.account.Timer.GetCurrentDateTime(); foreach ( WeightedPosition weightedPosition in ! this.wFLagWeightedPositions.DrivingWeightedPositions ) todayTotalGain += weightedPosition.GetCloseToCloseDailyReturn( today ); *************** *** 153,157 **** // this.chosenTickers.SetTickers( this.bestPerformingTickers , this.account ); foreach ( WeightedPosition weightedPosition in ! this.wFLagWeightedPositions.PortfolioWeightedPositions.Values ) this.marketCloseEventHandler_openPosition( weightedPosition ); --- 153,157 ---- // this.chosenTickers.SetTickers( this.bestPerformingTickers , this.account ); foreach ( WeightedPosition weightedPosition in ! this.wFLagWeightedPositions.PortfolioWeightedPositions ) this.marketCloseEventHandler_openPosition( weightedPosition ); |