[Quantproject-developers] QuantDownloader/Downloader/QuotesEditor QuotesChart.cs, 1.6, 1.7 QuotesEd
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2008-11-30 22:42:41
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/QuotesEditor In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28110/Downloader/QuotesEditor Modified Files: QuotesChart.cs QuotesEditor.cs Log Message: HistoricalDataProvider has been replaced by HistoricalQuotesProvider Index: QuotesChart.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/QuotesEditor/QuotesChart.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** QuotesChart.cs 3 Apr 2005 00:02:53 -0000 1.6 --- QuotesChart.cs 30 Nov 2008 22:42:38 -0000 1.7 *************** *** 26,30 **** using NPlot.Windows; using QuantProject.ADT.Histories; ! using QuantProject.Data.DataProviders; using QuantProject.Presentation.Charting; --- 26,30 ---- using NPlot.Windows; using QuantProject.ADT.Histories; ! using QuantProject.Data.DataProviders.Quotes; using QuantProject.Presentation.Charting; *************** *** 45,49 **** this.ticker = value; this.Clear(); ! this.Add( HistoricalDataProvider.GetAdjustedCloseHistory( this.ticker ) ); } } --- 45,49 ---- this.ticker = value; this.Clear(); ! this.Add( HistoricalQuotesProvider.GetAdjustedCloseHistory( this.ticker ) ); } } Index: QuotesEditor.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/QuotesEditor/QuotesEditor.cs,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** QuotesEditor.cs 29 Mar 2005 14:57:30 -0000 1.10 --- QuotesEditor.cs 30 Nov 2008 22:42:38 -0000 1.11 *************** *** 10,14 **** using QuantProject.Business.Validation; using QuantProject.Data; ! using QuantProject.Data.DataProviders; using QuantProject.Data.DataTables; --- 10,14 ---- using QuantProject.Business.Validation; using QuantProject.Data; ! using QuantProject.Data.DataProviders.Quotes; using QuantProject.Data.DataTables; *************** *** 117,121 **** private void getTickerQuotes() { ! this.tickerQuotes = HistoricalDataProvider.GetTickerQuotes( this.textBoxTicker.Text ); } --- 117,121 ---- private void getTickerQuotes() { ! this.tickerQuotes = HistoricalQuotesProvider.GetTickerQuotes( this.textBoxTicker.Text ); } |