private final DataProvider dataProvider = new DynamicSimulationMockDataProvider(start,open,high,low,close,stop);
private final BigDecimal commission = new BigDecimal("9");
@Test
public void limitBTOTestOpenOpen() {
RelativeNumber buyBelow = new RelativeNumber("4");//must buy below this price
RelativeNumber sellAbove = new RelativeNumber("3");//must sell above this price
BigDecimal expectedBuy = new BigDecimal("3");
BigDecimal expectedSell = new BigDecimal("3");
limitBTOTest(buyBelow, sellAbove, expectedBuy, expectedSell);