Hi everyone. I met some problems when I prepared to run my strategy on remote server. Please help me.
I have read the jforex wiki about remote run as blow:
https://www.dukascopy.com/wiki/#Remote_RunSo I checked my codes to avoid errors as listed.
When I right click my strategy and select the "Remote Run" in the jforex platform, it always returns a popup window which prints an "error" message, but no more detailed error messages showed.
Finally, I created an new empty template strategy, adding only two lines:
1. The declaration of the instrument to work with:
public Instrument mInstrument = Instrument.EURUSD;
2. subscribe the instrument in onStart() callback:
context.setSubscribedInstruments(java.util.Collections.singleton(mInstrument), true);
But it returned the error message window too.
Please help me, thanks!!!