[Quantproject-developers] QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOs
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2010-03-28 15:14:06
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv6758/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator Modified Files: EndOfDayTimerHandlerPVO.cs Log Message: Code changed because WeightedPositions.Reverse() has now become WeightedPositions.ReverseSigns() Index: EndOfDayTimerHandlerPVO.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/EndOfDayTimerHandlerPVO.cs,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** EndOfDayTimerHandlerPVO.cs 29 Sep 2008 21:17:25 -0000 1.11 --- EndOfDayTimerHandlerPVO.cs 28 Mar 2010 15:13:58 -0000 1.12 *************** *** 199,203 **** this.portfolioType == PortfolioType.ShortAndLong) { ! this.chosenWeightedPositions.Reverse(); try { --- 199,203 ---- this.portfolioType == PortfolioType.ShortAndLong) { ! this.chosenWeightedPositions.ReverseSigns(); try { *************** *** 214,218 **** finally { ! this.chosenWeightedPositions.Reverse(); } } --- 214,218 ---- finally { ! this.chosenWeightedPositions.ReverseSigns(); } } |