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