Update of /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/ExchangeSelectors/MostLiquid
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv420/OpenTickDownloader/ExchangeSelectors/MostLiquid
Modified Files:
MostLiquidExchangeSelectorForSingleTicker.cs
Log Message:
oTManager is given as a parameter, now
Index: MostLiquidExchangeSelectorForSingleTicker.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/ExchangeSelectors/MostLiquid/MostLiquidExchangeSelectorForSingleTicker.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MostLiquidExchangeSelectorForSingleTicker.cs 29 Jan 2009 19:43:00 -0000 1.3
--- MostLiquidExchangeSelectorForSingleTicker.cs 4 Feb 2009 20:00:56 -0000 1.4
***************
*** 115,121 ****
// }
public MostLiquidExchangeSelectorForSingleTicker(
! string ticker )
{
! this.oTManager = new OTManager();
this.oTManager.NewMessage +=
new NewMessageEventHandler(
--- 115,121 ----
// }
public MostLiquidExchangeSelectorForSingleTicker(
! OTManager oTManager , string ticker )
{
! this.oTManager = oTManager;
this.oTManager.NewMessage +=
new NewMessageEventHandler(
***************
*** 293,296 ****
--- 293,301 ----
// exchangeCode , this.ticker );
int requestId =
+ // this.oTManager.RequestHistData(
+ // exchangeCode , this.ticker ,
+ // new DateTime( 2008 , 02 , 07, 15 , 0 , 0 ) ,
+ // new DateTime( 2008 , 02 , 28, 15 , 0 , 0 ) ,
+ // OTHistoricalType.OhlcMinutely , 1 );
this.oTManager.RequestHistData(
exchangeCode , this.ticker
|