[Quantproject-developers] QuantProject/b4_Business/a07_DataProviders IHistoricalQuoteProvider.cs, 1
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2007-09-16 21:49:30
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18686/b4_Business/a07_DataProviders Modified Files: IHistoricalQuoteProvider.cs Log Message: The following method has been added to the interface: EndOfDayHistory GetEndOfDayQuotes( string ticker , EndOfDayHistory endOfDayHistory ); An implementation of such method returns the historical market values for the given instrument: a quote is returned for every EndOfDayDateTime in endOfDayHistory Index: IHistoricalQuoteProvider.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders/IHistoricalQuoteProvider.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IHistoricalQuoteProvider.cs 9 Jan 2005 23:29:41 -0000 1.1 --- IHistoricalQuoteProvider.cs 16 Sep 2007 21:49:27 -0000 1.2 *************** *** 41,45 **** /// <param name="endOfDayDateTime">end of day date time for the market evaluation</param> /// <returns></returns> ! double GetMarketValue( string instrumentKey , EndOfDayDateTime endOfDayDateTime ); } } --- 41,53 ---- /// <param name="endOfDayDateTime">end of day date time for the market evaluation</param> /// <returns></returns> ! double GetMarketValue( string instrumentKey , ! EndOfDayDateTime endOfDayDateTime ); ! /// <summary> ! /// Returns the historical market values for the given instrument: ! /// a quote is returned for every EndOfDayDateTime in ! /// endOfDayHistory ! /// </summary> ! EndOfDayHistory GetEndOfDayQuotes( string ticker , ! EndOfDayHistory endOfDayHistory ); } } |