[Quantproject-developers] QuantDownloader/Downloader/QuotesEditor QuotesChart.cs,1.3,1.4 QuotesEdito
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2004-08-27 21:41:39
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/QuotesEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4253/Downloader/QuotesEditor Modified Files: QuotesChart.cs QuotesEditor.cs Log Message: QuantProject.Data.DataProvider has been replaced by QuantProject.Data.DataProviders.HistoricalDataProvider Index: QuotesChart.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/QuotesEditor/QuotesChart.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** QuotesChart.cs 28 Mar 2004 20:20:44 -0000 1.3 --- QuotesChart.cs 27 Aug 2004 21:41:24 -0000 1.4 *************** *** 26,30 **** using scpl.Windows; using QuantProject.ADT.Histories; ! using QuantProject.Data; using QuantProject.Presentation.Charting; --- 26,30 ---- using scpl.Windows; using QuantProject.ADT.Histories; ! using QuantProject.Data.DataProviders; using QuantProject.Presentation.Charting; *************** *** 55,59 **** Console.WriteLine( "QuotesChart.PaintingHandler()" ); this.Clear(); ! this.Add( DataProvider.GetCloseHistory( this.ticker ) ); base.OnPaint( e ); } --- 55,59 ---- Console.WriteLine( "QuotesChart.PaintingHandler()" ); this.Clear(); ! this.Add( HistoricalDataProvider.GetCloseHistory( this.ticker ) ); base.OnPaint( e ); } Index: QuotesEditor.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/QuotesEditor/QuotesEditor.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** QuotesEditor.cs 27 May 2004 16:28:04 -0000 1.8 --- QuotesEditor.cs 27 Aug 2004 21:41:24 -0000 1.9 *************** *** 10,13 **** --- 10,14 ---- using QuantProject.Business.Validation; using QuantProject.Data; + using QuantProject.Data.DataProviders; using QuantProject.Data.DataTables; *************** *** 116,120 **** private void getTickerQuotes() { ! this.tickerQuotes = DataProvider.GetTickerQuotes( this.textBoxTicker.Text ); } --- 117,121 ---- private void getTickerQuotes() { ! this.tickerQuotes = HistoricalDataProvider.GetTickerQuotes( this.textBoxTicker.Text ); } |