[Quantproject-developers] QuantProject/b91_QuantProject Main.cs, 1.16, 1.17
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2007-06-24 21:27:19
|
Update of /cvsroot/quantproject/QuantProject/b91_QuantProject In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25231/b91_QuantProject Modified Files: Main.cs Log Message: A global try catch statement has been removed Index: Main.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b91_QuantProject/Main.cs,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Main.cs 6 Dec 2006 16:10:40 -0000 1.16 --- Main.cs 24 Jun 2007 21:27:16 -0000 1.17 *************** *** 33,36 **** --- 33,37 ---- using QuantProject.Scripts.SimpleTesting; using QuantProject.Scripts.WalkForwardTesting.WalkForwardOneRank; + using QuantProject.Scripts.WalkForwardTesting.WalkForwardLag; using QuantProject.Scripts.CallingReportsForRunScripts; using QuantProject.Presentation.Reporting.WindowsForm; *************** *** 372,377 **** static void Main() { ! try ! { //new RunMSFTsimpleTest().Run(); // new RunMSFTsimpleTest_2().Run(); --- 373,378 ---- static void Main() { ! // try ! // { //new RunMSFTsimpleTest().Run(); // new RunMSFTsimpleTest_2().Run(); *************** *** 404,413 **** //new RunWalkForwardOneRank().Run(); ! } ! catch ( Exception ex ) ! { ! // QuantProject.Principale.Principale.runEfficientPortfolio.SaveScriptResults(); ! writeExceptionToLogFile(ex); ! } } static private void writeExceptionToLogFile(Exception ex) --- 405,414 ---- //new RunWalkForwardOneRank().Run(); ! // } ! // catch ( Exception ex ) ! // { ! //// QuantProject.Principale.Principale.runEfficientPortfolio.SaveScriptResults(); ! // writeExceptionToLogFile(ex); ! // } } static private void writeExceptionToLogFile(Exception ex) *************** *** 456,462 **** // try // {//call here your scripts ! //new RunWalkForwardOneRank().Run(); ! new RunOneRank().Run(); //new RunEfficientCTCPorfolio("Test",400,5,90,10,10000, // "^SPX", --- 457,464 ---- // try // {//call here your scripts ! //new RunWalkForwardOneRank().Run(); ! new WFLagMain().ShowDialog(); ! // new RunOneRank().Run(); //new RunEfficientCTCPorfolio("Test",400,5,90,10,10000, // "^SPX", |