//test only the processor and do it outside the order
boolean processed = processor.process(dataProvider, portfolio, commission, order, sellAction, quantityComputable, null);
assertTrue(processed);
assertEquals(new BigDecimal("1021.00"),portfolio.cash());
assertEquals(Integer.valueOf(-quantity),portfolio.position("GG").quantity());
assertEquals(new BigDecimal("-60"),portfolio.equity(dataProvider));
//Buy to cover this short position
SignalAction action = SignalAction.BTC;