[Quantproject-developers] QuantDownloader/Downloader/QuotesEditor/RangeToRange RangeToRangeChart.c
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2008-11-30 22:42:42
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/QuotesEditor/RangeToRange In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28110/Downloader/QuotesEditor/RangeToRange Modified Files: RangeToRangeChart.cs Log Message: HistoricalDataProvider has been replaced by HistoricalQuotesProvider Index: RangeToRangeChart.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/QuotesEditor/RangeToRange/RangeToRangeChart.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RangeToRangeChart.cs 27 Aug 2004 21:41:24 -0000 1.2 --- RangeToRangeChart.cs 30 Nov 2008 22:42:38 -0000 1.3 *************** *** 2,6 **** using System.Drawing; using QuantProject.ADT.Histories; ! using QuantProject.Data.DataProviders; using QuantProject.Presentation.Charting; --- 2,6 ---- using System.Drawing; using QuantProject.ADT.Histories; ! using QuantProject.Data.DataProviders.Quotes; using QuantProject.Presentation.Charting; *************** *** 21,27 **** protected override void addHistories() { ! History lowHistory = HistoricalDataProvider.GetLowHistory( ((QuotesEditor)this.FindForm()).Ticker ); this.add( lowHistory , Color.Green ); ! History highHistory = HistoricalDataProvider.GetHighHistory( ((QuotesEditor)this.FindForm()).Ticker ); this.add( highHistory , Color.Blue ); } --- 21,27 ---- protected override void addHistories() { ! History lowHistory = HistoricalQuotesProvider.GetLowHistory( ((QuotesEditor)this.FindForm()).Ticker ); this.add( lowHistory , Color.Green ); ! History highHistory = HistoricalQuotesProvider.GetHighHistory( ((QuotesEditor)this.FindForm()).Ticker ); this.add( highHistory , Color.Blue ); } |