[Quantproject-developers] QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagGenomesDeb
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2010-03-28 15:28:11
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagGenomesDebugger In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv12834/WalkForwardTesting/WalkForwardLag/WFLagGenomesDebugger Modified Files: WFLagChosenPositionsDebugInfo.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: WFLagChosenPositionsDebugInfo.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagGenomesDebugger/WFLagChosenPositionsDebugInfo.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** WFLagChosenPositionsDebugInfo.cs 28 Oct 2007 19:01:26 -0000 1.7 --- WFLagChosenPositionsDebugInfo.cs 28 Mar 2010 15:28:02 -0000 1.8 *************** *** 148,152 **** int i = 0; foreach ( string signedTicker in ! wFLagWeightedPositions.DrivingWeightedPositions.Keys ) { drivingAndPortfolioTickers[ i ] = SignedTicker.GetTicker( signedTicker ); --- 148,152 ---- int i = 0; foreach ( string signedTicker in ! wFLagWeightedPositions.DrivingWeightedPositions.SignedTickers.Tickers ) { drivingAndPortfolioTickers[ i ] = SignedTicker.GetTicker( signedTicker ); *************** *** 154,158 **** } foreach ( string signedTicker in ! wFLagWeightedPositions.PortfolioWeightedPositions.Keys ) { drivingAndPortfolioTickers[ i ] = SignedTicker.GetTicker( signedTicker ); --- 154,158 ---- } foreach ( string signedTicker in ! wFLagWeightedPositions.PortfolioWeightedPositions.SignedTickers.Tickers ) { drivingAndPortfolioTickers[ i ] = SignedTicker.GetTicker( signedTicker ); |