package jforex.strategies.oneorder;

import java.io.File;
import com.dukascopy.api.*;

public class EmptyStrategyWithParams implements IStrategy {

	@Configurable("Period")
	public Period period = Period.TEN_SECS;
	@Configurable("Instrument")
	public Instrument instrument = Instrument.EURUSD;
	@Configurable("Order count")
	public int orderCount = 10;
	@Configurable("File Path")
	public File file = new File("C:/temp/textFile.txt");
	
	public void onStart(IContext context) throws JFException {}
	public void onTick(Instrument instrument, ITick tick) throws JFException {}
	public void onBar(Instrument instrument, Period period, IBar askBar, IBar bidBar) throws JFException {}
	public void onMessage(IMessage message) throws JFException {}
	public void onAccount(IAccount account) throws JFException {}
	public void onStop() throws JFException {}

}
