[Quantproject-developers] QuantProject/b4_Business/a07_DataProviders HistoricalAdjustedQuoteProvide
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-11-20 20:48:08
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31440/b4_Business/a07_DataProviders Modified Files: HistoricalAdjustedQuoteProvider.cs HistoricalRawQuoteProvider.cs Log Message: now HistoricalQuoteProvider is inherited (it was HistoricalMarketValueProvider in the previous revision) Index: HistoricalRawQuoteProvider.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders/HistoricalRawQuoteProvider.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** HistoricalRawQuoteProvider.cs 29 Sep 2008 21:22:23 -0000 1.6 --- HistoricalRawQuoteProvider.cs 20 Nov 2008 20:47:57 -0000 1.7 *************** *** 33,37 **** /// </summary> [Serializable] ! public class HistoricalRawQuoteProvider : HistoricalMarketValueProvider { public HistoricalRawQuoteProvider() --- 33,37 ---- /// </summary> [Serializable] ! public class HistoricalRawQuoteProvider : HistoricalQuoteProvider { public HistoricalRawQuoteProvider() *************** *** 55,58 **** --- 55,65 ---- return "raw"; } + + // public override bool WasExchanged(string ticker, DateTime dateTime) + // { + // bool wasExchanged = + // HistoricalQuotesProvider.WasExchanged( ticker , dateTime ); + // return wasExchanged; + // } } } Index: HistoricalAdjustedQuoteProvider.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders/HistoricalAdjustedQuoteProvider.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** HistoricalAdjustedQuoteProvider.cs 29 Sep 2008 21:22:23 -0000 1.7 --- HistoricalAdjustedQuoteProvider.cs 20 Nov 2008 20:47:57 -0000 1.8 *************** *** 33,37 **** /// </summary> [Serializable] ! public class HistoricalAdjustedQuoteProvider : HistoricalMarketValueProvider { public HistoricalAdjustedQuoteProvider() --- 33,37 ---- /// </summary> [Serializable] ! public class HistoricalAdjustedQuoteProvider : HistoricalQuoteProvider { public HistoricalAdjustedQuoteProvider() *************** *** 98,101 **** --- 98,108 ---- return "adj"; } + + // public override bool WasExchanged(string ticker, DateTime dateTime) + // { + // bool wasExchanged = + // HistoricalQuotesProvider.WasExchanged( ticker , dateTime ); + // return wasExchanged; + // } } } |