[Quantproject-developers] QuantProject/b91_QuantProject Main.cs,1.8,1.9
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-02-06 18:18:18
|
Update of /cvsroot/quantproject/QuantProject/b91_QuantProject In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5962/b91_QuantProject Modified Files: Main.cs Log Message: Removed a try/catch for debugging purposes (talk to Millo to decide about this). Index: Main.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b91_QuantProject/Main.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Main.cs 4 Feb 2005 00:20:39 -0000 1.8 --- Main.cs 6 Feb 2005 18:18:08 -0000 1.9 *************** *** 30,35 **** //using QuantProject.ADT.Optimizing.Genetic; ! using QuantProject.Scripts.TickerSelectionTesting.EfficientPortfolios; ! using QuantProject.Scripts.WalkForwardTesting.WalkForwardOneRank; using QuantProject.Scripts.CallingReportsForRunnedScripts; --- 30,34 ---- //using QuantProject.ADT.Optimizing.Genetic; ! using QuantProject.Scripts.SimpleTesting; using QuantProject.Scripts.WalkForwardTesting.WalkForwardOneRank; using QuantProject.Scripts.CallingReportsForRunnedScripts; *************** *** 302,315 **** private void menuItemRun_Click(object sender, System.EventArgs e) { ! try ! {//call here your scripts //new RunWalkForwardOneRank().Run(); ! new RunEfficientCTCPorfolio().Run(); ! } ! catch ( Exception ex ) ! { ! string notUsed = ex.ToString(); ! //in this way qP shouldn't stop if running a single script fails ... ! } } --- 301,315 ---- private void menuItemRun_Click(object sender, System.EventArgs e) { ! // try ! // {//call here your scripts //new RunWalkForwardOneRank().Run(); ! // new RunEfficientCTCPorfolio().Run(); ! new RunOneRank().Run(); ! // } ! // catch ( Exception ex ) ! // { ! // string notUsed = ex.ToString(); ! // //in this way qP shouldn't stop if running a single script fails ... ! // } } |