[Quantproject-developers] QuantProject/b7_Scripts/TickerSelectionTesting EndOfDayTimerHandlerOTCCT
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2010-03-28 15:14:06
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv6758/TickerSelectionTesting Modified Files: EndOfDayTimerHandlerOTCCTO.cs Log Message: Code changed because WeightedPositions.Reverse() has now become WeightedPositions.ReverseSigns() Index: EndOfDayTimerHandlerOTCCTO.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/EndOfDayTimerHandlerOTCCTO.cs,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** EndOfDayTimerHandlerOTCCTO.cs 29 Sep 2008 21:17:53 -0000 1.10 --- EndOfDayTimerHandlerOTCCTO.cs 28 Mar 2010 15:13:58 -0000 1.11 *************** *** 89,93 **** AccountManager.ClosePositions(this.account); try{ ! this.chosenWeightedPositions.Reverse(); this.openPositions(); } --- 89,93 ---- AccountManager.ClosePositions(this.account); try{ ! this.chosenWeightedPositions.ReverseSigns(); this.openPositions(); } *************** *** 96,100 **** string forBreakpoint = ex.Message; forBreakpoint = forBreakpoint + ""; } ! this.chosenWeightedPositions.Reverse(); } --- 96,100 ---- string forBreakpoint = ex.Message; forBreakpoint = forBreakpoint + ""; } ! this.chosenWeightedPositions.ReverseSigns(); } |