[Quantproject-developers] QuantDownloader/Downloader/TickerSelectors TickerSelectorForm.cs,1.5,1.6
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2004-08-02 23:15:06
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/TickerSelectors In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27414/Downloader/TickerSelectors Modified Files: TickerSelectorForm.cs Log Message: Added new item in the combo box in order to visually interact with the TickerSelector class Index: TickerSelectorForm.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/TickerSelectors/TickerSelectorForm.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TickerSelectorForm.cs 25 Jul 2004 12:14:18 -0000 1.5 --- TickerSelectorForm.cs 2 Aug 2004 23:14:54 -0000 1.6 *************** *** 71,74 **** --- 71,78 ---- this.comboBoxAvailableSelectionRules.Text = "Performance"; this.comboBoxAvailableSelectionRules.Items.Add("Performance"); + this.comboBoxAvailableSelectionRules.Text = "Volatility"; + this.comboBoxAvailableSelectionRules.Items.Add("Volatility"); + this.comboBoxAvailableSelectionRules.Text = "AverageCloseToClosePerformance"; + this.comboBoxAvailableSelectionRules.Items.Add("AverageCloseToClosePerformance"); } *************** *** 345,348 **** --- 349,356 ---- else if (this.comboBoxAvailableSelectionRules.Text == "Performance") typeSelected = SelectionType.Performance; + else if (this.comboBoxAvailableSelectionRules.Text == "Volatility") + typeSelected = SelectionType.Volatility; + else if (this.comboBoxAvailableSelectionRules.Text == "AverageCloseToClosePerformance") + typeSelected = SelectionType.AverageCloseToClosePerformance; return typeSelected; } |