Support wrote:
Hi,
it's not possible to compile a java file to the jfx using Eclipse.
It can be compiled in the JForex platform only.
Then please explain how compile next task.
I'm have main program - "MainBody.java"
Fragment of code:
public void onTick(Instrument instrument, ITick tick) throws JFException {
Pair pair;
}
And have - "Pair.java"
Fragment of code:
package test;
public abstract class Pair {
public abstract boolean tradeFlagBuy();
public abstract boolean tradeFlagSell();
public abstract int readme();
}
How compile "MainBody.java" in JForex platform with including "Pair.java" class?