files get read/written to the
IContext.getFilesDir() directory, you can check the full path the following way:
package chart;
import com.dukascopy.api.*;
public class CheckFilesDir implements IStrategy {
@Override
public void onStart(IContext context) throws JFException {
context.getConsole().getOut().println(context.getFilesDir());
}
@Override
public void onTick(Instrument instrument, ITick tick) throws JFException {}
@Override
public void onBar(Instrument instrument, Period period, IBar askBar, IBar bidBar) throws JFException {}
@Override
public void onMessage(IMessage message) throws JFException {}
@Override
public void onAccount(IAccount account) throws JFException {}
@Override
public void onStop() throws JFException {}
}