[Quantproject-developers] QuantProject/b7_Scripts/TickerSelectionTesting GenomeMeaning.cs, 1.4, 1.
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2008-01-14 23:40:28
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22216/b7_Scripts/TickerSelectionTesting Modified Files: GenomeMeaning.cs Log Message: Minor changes Index: GenomeMeaning.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/GenomeMeaning.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** GenomeMeaning.cs 9 Apr 2007 17:58:04 -0000 1.4 --- GenomeMeaning.cs 14 Jan 2008 23:40:23 -0000 1.5 *************** *** 24,27 **** --- 24,29 ---- using System.Collections; + using QuantProject.Business.Strategies; + namespace QuantProject.Scripts.TickerSelectionTesting.EfficientPortfolios { *************** *** 79,83 **** private void genomeMeaning_setHashCodeForTickerComposition() { ! ArrayList listOfTickers = new ArrayList(this.tickers); listOfTickers.Sort(); foreach(string tickerCode in listOfTickers) --- 81,88 ---- private void genomeMeaning_setHashCodeForTickerComposition() { ! string[] unsignedTickers = new string[this.tickers.Length]; ! for(int i = 0; i < this.tickers.Length; i++) ! unsignedTickers[i] = SignedTicker.GetTicker(this.tickers[i]); ! ArrayList listOfTickers = new ArrayList(unsignedTickers); listOfTickers.Sort(); foreach(string tickerCode in listOfTickers) |