[Quantproject-developers] QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOs
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2009-03-13 15:11:34
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv29956/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator Modified Files: PVOLogItem.cs PVOPositions.cs Log Message: A property in PVOPositions class has been renamed. Index: PVOPositions.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/PVOPositions.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** PVOPositions.cs 12 Jan 2009 18:11:01 -0000 1.5 --- PVOPositions.cs 13 Mar 2009 15:11:23 -0000 1.6 *************** *** 43,47 **** private double oversoldThreshold; private double overboughtThreshold; ! private int numDaysForOscillatingPeriod; private int generation; --- 43,47 ---- private double oversoldThreshold; private double overboughtThreshold; ! private int numOfDaysOrMinutesForOscillatingPeriod; private int generation; *************** *** 59,65 **** set{this.overboughtThreshold = value;} } ! public int NumDaysForOscillatingPeriod { ! get{return this.numDaysForOscillatingPeriod;} } --- 59,65 ---- set{this.overboughtThreshold = value;} } ! public int NumOfDaysOrMinutesForOscillatingPeriod { ! get{return this.numOfDaysOrMinutesForOscillatingPeriod;} } *************** *** 78,82 **** this.OversoldThreshold, this.overboughtThreshold, ! this.numDaysForOscillatingPeriod); } --- 78,82 ---- this.OversoldThreshold, this.overboughtThreshold, ! this.numOfDaysOrMinutesForOscillatingPeriod); } *************** *** 96,100 **** this.oversoldThreshold = oversoldThreshold; this.overboughtThreshold = overboughtThreshold; ! this.numDaysForOscillatingPeriod = numDaysForOscillatingPeriod; this.generation = -1; } --- 96,100 ---- this.oversoldThreshold = oversoldThreshold; this.overboughtThreshold = overboughtThreshold; ! this.numOfDaysOrMinutesForOscillatingPeriod = numDaysForOscillatingPeriod; this.generation = -1; } Index: PVOLogItem.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TechnicalAnalysisTesting/Oscillators/FixedLevelOscillators/PortfolioValueOscillator/PVOLogItem.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PVOLogItem.cs 12 Nov 2008 20:42:39 -0000 1.6 --- PVOLogItem.cs 13 Mar 2009 15:11:23 -0000 1.7 *************** *** 160,164 **** // objects that use it) int numDaysForOscillatingPeriodForChooser = ! ((PVOPositions)this.BestPVOPositionsInSample[0]).NumDaysForOscillatingPeriod; int numberOfPortfolioPositions = this.BestPVOPositionsInSample[0].WeightedPositions.Count; --- 160,164 ---- // objects that use it) int numDaysForOscillatingPeriodForChooser = ! ((PVOPositions)this.BestPVOPositionsInSample[0]).NumOfDaysOrMinutesForOscillatingPeriod; int numberOfPortfolioPositions = this.BestPVOPositionsInSample[0].WeightedPositions.Count; |