[Quantproject-developers] QuantDownloader/Downloader/TickerSelectors TickerSelectorForm.cs,1.6,1.7
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2004-08-04 23:03:37
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/TickerSelectors In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31805/Downloader/TickerSelectors Modified Files: TickerSelectorForm.cs Log Message: Added methods to the TickerSelector for the computation (just for testing purpose) of correlationCoefficient for each possible couple of a given set of tickers. The results are shown through to the TickerSelectorForm Index: TickerSelectorForm.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/TickerSelectors/TickerSelectorForm.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TickerSelectorForm.cs 2 Aug 2004 23:14:54 -0000 1.6 --- TickerSelectorForm.cs 4 Aug 2004 23:03:17 -0000 1.7 *************** *** 75,78 **** --- 75,80 ---- this.comboBoxAvailableSelectionRules.Text = "AverageCloseToClosePerformance"; this.comboBoxAvailableSelectionRules.Items.Add("AverageCloseToClosePerformance"); + this.comboBoxAvailableSelectionRules.Text = "CloseToCloseLinearCorrelation"; + this.comboBoxAvailableSelectionRules.Items.Add("CloseToCloseLinearCorrelation"); } *************** *** 353,356 **** --- 355,360 ---- else if (this.comboBoxAvailableSelectionRules.Text == "AverageCloseToClosePerformance") typeSelected = SelectionType.AverageCloseToClosePerformance; + else if (this.comboBoxAvailableSelectionRules.Text == "CloseToCloseLinearCorrelation") + typeSelected = SelectionType.CloseToCloseLinearCorrelation; return typeSelected; } |