[Quantproject-developers] QuantProject/b7_Scripts/TickerSelectionTesting/SimpleSelection BestTickers
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-10-23 18:11:39
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/SimpleSelection In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14144/b7_Scripts/TickerSelectionTesting/SimpleSelection Modified Files: BestTickersScreener.cs Log Message: Fixed bug Index: BestTickersScreener.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/SimpleSelection/BestTickersScreener.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** BestTickersScreener.cs 21 Oct 2005 22:16:50 -0000 1.2 --- BestTickersScreener.cs 23 Oct 2005 18:11:28 -0000 1.3 *************** *** 151,155 **** Array.Sort(allTickersShortOrLong); for(int t = 0; t<returnValue.Length; t++) ! returnValue[t] = allTickersShortOrLong[t].Ticker; } --- 151,155 ---- Array.Sort(allTickersShortOrLong); for(int t = 0; t<returnValue.Length; t++) ! returnValue[t] = allTickersShortOrLong[allTickersShortOrLong.Length - t -1].Ticker; } |