Hello,
I am running Debian and want to automatically start multiple instances of one strategy but with different parameters.
When I enter this command:
javaws -J-Djnlp.client.username=USERNAME -J-Djnlp.client.password=PASSWORD
-J-Djnlp.strategy.path=/home/strategy.jfx,params1;/home/strategy.jfx,params2 https://www.dukascopy.com/client/live/jclient/jforex.jnlp
I get this error:
/home/strategy.jfx,params2: No such file or directory
At the same time these two commands work just fine:
javaws -J-Djnlp.client.username=USERNAME -J-Djnlp.client.password=PASSWORD
-J-Djnlp.strategy.path=/home/strategy.jfx,params1 https://www.dukascopy.com/client/live/jclient/jforex.jnlp
javaws -J-Djnlp.client.username=USERNAME -J-Djnlp.client.password=PASSWORD
-J-Djnlp.strategy.path=/home/strategy.jfx,params2 https://www.dukascopy.com/client/live/jclient/jforex.jnlp
What am I missing here? Isn't it possible to specify multiple strategies separated by semicolons?