[Quantproject-developers] QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOs
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2009-08-30 21:31:48
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/Decoding In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19292/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/Decoding Modified Files: BasicDecoderForPVOPositions.cs Log Message: PVO script has been updated Index: BasicDecoderForPVOPositions.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/Decoding/BasicDecoderForPVOPositions.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** BasicDecoderForPVOPositions.cs 18 May 2008 22:07:19 -0000 1.4 --- BasicDecoderForPVOPositions.cs 30 Aug 2009 21:31:38 -0000 1.5 *************** *** 36,39 **** --- 36,40 ---- /// In this implementation, only tickers and thresholds are decoded /// </summary> + [Serializable] public class BasicDecoderForPVOPositions : BasicDecoderForTestingPositions { *************** *** 85,89 **** this.decodeDecodable_setThresholds(); PVOPositions pvoPositions = new PVOPositions( ! new WeightedPositions( this.getWeights(signedTickers), signedTickers), this.oversoldThreshold, this.overboughtThreshold, this.numDaysForOscillatingPeriod); --- 86,90 ---- this.decodeDecodable_setThresholds(); PVOPositions pvoPositions = new PVOPositions( ! new WeightedPositions( this.getUnsignedWeights(signedTickers), signedTickers), this.oversoldThreshold, this.overboughtThreshold, this.numDaysForOscillatingPeriod); |