User rating: 0
Joined: Sat 19 Nov, 2011, 01:24 Posts: 23 Location: United Kingdom,
I have designed a Matlab front end GUI which outputs a .txt file with parameters for various indicators. My jforex strategy reads this .txt file and uses the values for the strategy when back testing. After it reads the .txt it writes back to the file incriminating the value by a set amount. So all I have to do is hit the "Start" button again in the tester and when the strategy is run it runs with the new values.
Now at the moment as you can see its almost completely automated and for now its ok because I'm only running it a few times.
But my code is getting to a point where it can run large design of experiments and I want to test hundreds of different parameters, how can I make this process 100% automated so that it will re run the tester automatically?
API Support
Post subject: Re: optimization of strategy questions
But my code is getting to a point where it can run large design of experiments and I want to test hundreds of different parameters, how can I make this process 100% automated so that it will re run the tester automatically?
It depends if you are doing this in Standalone JForex API or JForex client. So which one do you use? Also provide some more details on how that automatization should work.
pag24
Post subject: Re: optimization of strategy questions
Post rating: 0
Posted: Sat 21 Jan, 2012, 17:56
User rating: 0
Joined: Sat 19 Nov, 2011, 01:24 Posts: 23 Location: United Kingdom,
What is the difference between the two? I'm running "https://www.dukascopy.com/client/demo/jclient/jforex.jnlp"
Also I believe I have sorted my problem, Pleas let me know if you think this is a good way to go about it. I am running an optimization with a single configurable variable. Lets call it "run_no" and I set the optimized value between 1 and 50 with step size of 1.
When I load the text file, the file name looks like this
"inpur_parameter_file_"+run_no+".txt"
So as long as there are 50 parameter files to read with the correct names the optimization will load 50 different files of whatever configuration I have setup from my matlab output.
API Support
Post subject: Re: optimization of strategy questions