Update of /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/ExchangeSelectors/MostLiquid
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32437/OpenTickDownloader/ExchangeSelectors/MostLiquid
Modified Files:
MostLiquidExchangeSelector.cs
Log Message:
some static OTManager's methods have been changed and are instance method now
Index: MostLiquidExchangeSelector.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/ExchangeSelectors/MostLiquid/MostLiquidExchangeSelector.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** MostLiquidExchangeSelector.cs 9 Jul 2008 22:19:20 -0000 1.1
--- MostLiquidExchangeSelector.cs 4 Feb 2009 19:57:08 -0000 1.2
***************
*** 51,55 ****
// public event NewOHLCRequestEventHandler NewOHLCRequest;
! // private OTManager oTManager;
/// <summary>
/// if non empty, contains the full path to the file where
--- 51,55 ----
// public event NewOHLCRequestEventHandler NewOHLCRequest;
! private OTManager oTManager;
/// <summary>
/// if non empty, contains the full path to the file where
***************
*** 75,79 ****
public MostLiquidExchangeSelector()
{
! // this.oTManager = oTManager;
// this.logFileName = "";
this.mostLiquidExchange = new Hashtable();
--- 75,79 ----
public MostLiquidExchangeSelector()
{
! this.oTManager = new OTManager();
// this.logFileName = "";
this.mostLiquidExchange = new Hashtable();
***************
*** 101,104 ****
--- 101,105 ----
mostLiquidExchangeSelectorForSingleTicker =
new MostLiquidExchangeSelectorForSingleTicker(
+ this.oTManager ,
ticker );
mostLiquidExchangeSelectorForSingleTicker.NewMessage +=
|