[Quantproject-developers] QuantDownloader/Downloader/TickerSelectors TickerSelectorForm.cs, 1.22, 1
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2011-10-02 19:11:38
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/TickerSelectors
In directory vz-cvs-3.sog:/tmp/cvs-serv13698/Downloader/TickerSelectors
Modified Files:
TickerSelectorForm.cs
Log Message:
The call to SelectorByCloseToCloseCorrelationToBenchmark has been commented out, in order to let the project be compiled.
Index: TickerSelectorForm.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/TickerSelectors/TickerSelectorForm.cs,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** TickerSelectorForm.cs 17 Aug 2008 22:20:12 -0000 1.22
--- TickerSelectorForm.cs 2 Oct 2011 19:11:36 -0000 1.23
***************
*** 750,763 ****
else if (this.comboBoxAvailableSelectionRules.Text == "CloseToCloseCorrelationToBenchmark")
{
! if(this.textBoxGroupID.Text != "")
! returnValue = new SelectorByCloseToCloseCorrelationToBenchmark(this.textBoxGroupID.Text, this.textBoxMarketIndex.Text,
! this.checkBoxASCMode.Checked, this.dateTimePickerFirstDate.Value,
! this.dateTimePickerLastDate.Value, Int32.Parse(this.textBoxMaxNumOfReturnedTickers.Text),
! false);
! else
! returnValue = new SelectorByCloseToCloseCorrelationToBenchmark(this.tableOfSelectedTickers, this.textBoxMarketIndex.Text,
! this.checkBoxASCMode.Checked, this.dateTimePickerFirstDate.Value,
! this.dateTimePickerLastDate.Value, Int32.Parse(this.textBoxMaxNumOfReturnedTickers.Text),
! false);
}
else if (this.comboBoxAvailableSelectionRules.Text == "MaxLinearIndipendence")
--- 750,763 ----
else if (this.comboBoxAvailableSelectionRules.Text == "CloseToCloseCorrelationToBenchmark")
{
! // if(this.textBoxGroupID.Text != "")
! // returnValue = new SelectorByCloseToCloseCorrelationToBenchmark(this.textBoxGroupID.Text, this.textBoxMarketIndex.Text,
! // this.checkBoxASCMode.Checked, this.dateTimePickerFirstDate.Value,
! // this.dateTimePickerLastDate.Value, Int32.Parse(this.textBoxMaxNumOfReturnedTickers.Text),
! // false);
! // else
! // returnValue = new SelectorByCloseToCloseCorrelationToBenchmark(this.tableOfSelectedTickers, this.textBoxMarketIndex.Text,
! // this.checkBoxASCMode.Checked, this.dateTimePickerFirstDate.Value,
! // this.dateTimePickerLastDate.Value, Int32.Parse(this.textBoxMaxNumOfReturnedTickers.Text),
! // false);
}
else if (this.comboBoxAvailableSelectionRules.Text == "MaxLinearIndipendence")
|