[Quantproject-developers] QuantProject/b3_Data/DataProviders/Bars/Caching DailyBarCache.cs, 1.4, 1
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-12-30 00:11:55
|
Update of /cvsroot/quantproject/QuantProject/b3_Data/DataProviders/Bars/Caching In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv16515/b3_Data/DataProviders/Bars/Caching Modified Files: DailyBarCache.cs Log Message: Now bot Access and MySql are supported (but the DataBaseVersionManager will need some tuning in order to work with a MySQL database without structure) Index: DailyBarCache.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b3_Data/DataProviders/Bars/Caching/DailyBarCache.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DailyBarCache.cs 22 Nov 2008 18:25:22 -0000 1.4 --- DailyBarCache.cs 30 Dec 2008 00:11:44 -0000 1.5 *************** *** 189,193 **** { float barOpenValue = ! (float)barOpenValuesFromDatabase[ dateTime ]; this.barOpenValues.AddBar( ticker , dateTime , barOpenValue ); --- 189,193 ---- { float barOpenValue = ! Convert.ToSingle( barOpenValuesFromDatabase[ dateTime ] ); this.barOpenValues.AddBar( ticker , dateTime , barOpenValue ); |