I've been playing with Quantopian for a few days now and it seems like a great framework to write an algorithm, backtest it against some data and see how it performs quickly. One problem for me is that the whole process is quite manual (i.e. you need to enter the code, hit run, see the results, tweak the code and iterate).
Ideally, I want to write a number of different algorithms with a number of different parameters in each. Then, I want to run all different algorithms with different parameter values in parallel (or even in sequence if parallel is not possible) and see which ones perform better than others.
I want to do all of this automatically via code, rather than manually trying out each algorithm and parameter combination myself in the UI. I can't see how this is possible with the current framework. Am I missing something?