[Quantproject-developers] QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOs
Brought to you by:
glauco_1
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv11407/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator Modified Files: PVO_CTOStrategy.cs PVO_OTCStrategy.cs PVO_OTCStrategyLessCorrelated.cs Log Message: Code changed because WeightedPositions.Reverse() has now become WeightedPositions.ReverseSigns() Index: PVO_CTOStrategy.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/PVO_CTOStrategy.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PVO_CTOStrategy.cs 29 Sep 2008 21:17:48 -0000 1.3 --- PVO_CTOStrategy.cs 28 Mar 2010 15:24:32 -0000 1.4 *************** *** 297,301 **** { #region manage Overbought case ! this.pvoPositionsForOutOfSample.WeightedPositions.Reverse(); try { --- 297,301 ---- { #region manage Overbought case ! this.pvoPositionsForOutOfSample.WeightedPositions.ReverseSigns(); try { *************** *** 309,313 **** finally { ! this.pvoPositionsForOutOfSample.WeightedPositions.Reverse(); } #endregion --- 309,313 ---- finally { ! this.pvoPositionsForOutOfSample.WeightedPositions.ReverseSigns(); } #endregion Index: PVO_OTCStrategy.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/PVO_OTCStrategy.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PVO_OTCStrategy.cs 29 Sep 2008 21:18:13 -0000 1.7 --- PVO_OTCStrategy.cs 28 Mar 2010 15:24:32 -0000 1.8 *************** *** 289,293 **** { #region manage Overbought case ! this.pvoPositionsForOutOfSample.WeightedPositions.Reverse(); try { --- 289,293 ---- { #region manage Overbought case ! this.pvoPositionsForOutOfSample.WeightedPositions.ReverseSigns(); try { *************** *** 301,305 **** finally { ! this.pvoPositionsForOutOfSample.WeightedPositions.Reverse(); } #endregion --- 301,305 ---- finally { ! this.pvoPositionsForOutOfSample.WeightedPositions.ReverseSigns(); } #endregion Index: PVO_OTCStrategyLessCorrelated.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/PVO_OTCStrategyLessCorrelated.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** PVO_OTCStrategyLessCorrelated.cs 29 Sep 2008 21:18:13 -0000 1.4 --- PVO_OTCStrategyLessCorrelated.cs 28 Mar 2010 15:24:32 -0000 1.5 *************** *** 216,220 **** { #region manage Overbought case ! this.pvoPositionsForOutOfSample.WeightedPositions.Reverse(); try { --- 216,220 ---- { #region manage Overbought case ! this.pvoPositionsForOutOfSample.WeightedPositions.ReverseSigns(); try { *************** *** 228,232 **** finally { ! this.pvoPositionsForOutOfSample.WeightedPositions.Reverse(); } #endregion --- 228,232 ---- finally { ! this.pvoPositionsForOutOfSample.WeightedPositions.ReverseSigns(); } #endregion |