[Quantproject-developers] QuantDownloader/Downloader TickerDownloader.cs, 1.23, 1.24
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2011-01-16 11:21:37
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv26948 Modified Files: TickerDownloader.cs Log Message: Fixed bug: now the TickerDownloader properly updates new adjusted values in DB Index: TickerDownloader.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/TickerDownloader.cs,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** TickerDownloader.cs 30 Dec 2008 00:18:26 -0000 1.23 --- TickerDownloader.cs 16 Jan 2011 11:21:29 -0000 1.24 *************** *** 485,489 **** foreach(DataRow row in this.downloadedValuesFromSource.Rows) { ! Quotes.UpdateAdjustedClose(this.currentTicker, (DateTime)row[Quotes.Date], (float)row[Quotes.AdjustedClose]); } this.updateCurrentStatusAdjustedClose("Updated"); --- 485,489 ---- foreach(DataRow row in this.downloadedValuesFromSource.Rows) { ! Quotes.UpdateAdjustedClose(this.currentTicker, (DateTime)row[Quotes.Date], (double)row[Quotes.AdjustedClose]); } this.updateCurrentStatusAdjustedClose("Updated"); |