hello, i have read this
https://www.dukascopy.com/wiki/#Auto_launchingand i am wondering if you could kindly also provide an example for within JForex.
Assume there are 4 strategies stored in my workspace, called
main.java,
strategy1.java,
strategy2.java,
strategy3.java
I would like to manually start the main.java and this one should then automatically start all the strategy1-3.java.
Those strategy1-3.java should not ask for settings but simply run with their default parameters.
Also when i stop main.java it should stop strategy1-3.java before stopping itself. So basically the purpose of main.java is only the management of those other strategies which are trading one currency pair each.
What would be outstanding is if main.java collects one boolean "Answer" upon startup and hands over my input for "Answer" as a public variable to each strategy. Thus i could run the strategies in 2 different modes depending if "Answer" was yes or no.
Thank you for your help.