[Quantproject-developers] QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOs
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2010-03-28 15:13:29
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/BiasedPVO In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv6522/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/BiasedPVO Modified Files: EndOfDayTimerHandlerBiasedPVO.cs Log Message: Code changed because WeightedPositions.Reverse() has now become WeightedPositions.ReverseSigns() Index: EndOfDayTimerHandlerBiasedPVO.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/BiasedPVO/EndOfDayTimerHandlerBiasedPVO.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** EndOfDayTimerHandlerBiasedPVO.cs 29 Sep 2008 21:18:34 -0000 1.7 --- EndOfDayTimerHandlerBiasedPVO.cs 28 Mar 2010 15:13:21 -0000 1.8 *************** *** 381,385 **** (this.portfolioType == PortfolioType.ShortAndLong || this.portfolioType == PortfolioType.OnlyMixed) ) { ! this.weightedPositionsToEvaluateOutOfSample[this.currentGenomeIndex].Reverse(); try{ this.openPositions_open(weightedPositionsToEvaluateOutOfSample[this.currentGenomeIndex],true); --- 381,385 ---- (this.portfolioType == PortfolioType.ShortAndLong || this.portfolioType == PortfolioType.OnlyMixed) ) { ! this.weightedPositionsToEvaluateOutOfSample[this.currentGenomeIndex].ReverseSigns(); try{ this.openPositions_open(weightedPositionsToEvaluateOutOfSample[this.currentGenomeIndex],true); *************** *** 390,394 **** } finally{ ! this.weightedPositionsToEvaluateOutOfSample[this.currentGenomeIndex].Reverse(); } } --- 390,394 ---- } finally{ ! this.weightedPositionsToEvaluateOutOfSample[this.currentGenomeIndex].ReverseSigns(); } } |