[Quantproject-developers] QuantDownloader/Downloader/QuotesEditor/RangeToRange RangeToRangeChart.cs,
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-03-21 17:07:51
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/QuotesEditor/RangeToRange In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4495/RangeToRange Added Files: RangeToRangeChart.cs Log Message: VisualValidationChart to contain charts for quotes with Range to Range suspicious ratios --- NEW FILE: RangeToRangeChart.cs --- using System; using System.Drawing; using QuantProject.ADT.Histories; using QuantProject.Data; using QuantProject.Presentation.Charting; namespace QuantProject.Applications.Downloader { /// <summary> /// VisualValidationChart to contain charts for quotes with /// Range to Range suspicious ratios /// </summary> public class RangeToRangeChart : VisualValidationChart { public RangeToRangeChart() { // // TODO: Add constructor logic here // } protected override void addHistories() { History lowHistory = DataProvider.GetLowHistory( ((QuotesEditor)this.FindForm()).Ticker ); this.add( lowHistory , Color.Green ); History highHistory = DataProvider.GetHighHistory( ((QuotesEditor)this.FindForm()).Ticker ); this.add( highHistory , Color.Blue ); } } } |