[Quantproject-developers] QuantDownloader/Downloader TickerDownloader.cs,1.16,1.17
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-10-07 16:52:40
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4724/Downloader Modified Files: TickerDownloader.cs Log Message: Fixed bug. Now new adjusted quotes are properly committed to database. Index: TickerDownloader.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/TickerDownloader.cs,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** TickerDownloader.cs 2 Jun 2005 17:52:09 -0000 1.16 --- TickerDownloader.cs 7 Oct 2005 16:52:28 -0000 1.17 *************** *** 325,332 **** { this.updateCurrentStatusAdjustedClose("Changed!"); ! if (this.p_myForm.IsCheckCloseToCloseSelected && ! Quotes.IsAdjustedCloseToCloseRatioChanged(this.p_quTicker, this.getTableOfDownloadedValues(Quotes.GetStartDate(this.p_quTicker), ! Quotes.GetEndDate(this.p_quTicker)))) { this.updateCurrentStatusAdjustedCloseToCloseRatio("Changed at " + --- 325,332 ---- { this.updateCurrentStatusAdjustedClose("Changed!"); ! if (Quotes.IsAdjustedCloseToCloseRatioChanged(this.p_quTicker, this.getTableOfDownloadedValues(Quotes.GetStartDate(this.p_quTicker), ! Quotes.GetEndDate(this.p_quTicker))) && ! this.p_myForm.IsCheckCloseToCloseSelected) { this.updateCurrentStatusAdjustedCloseToCloseRatio("Changed at " + |