@BeforeMethod
public void setUp() throws Exception {
_portfolioMaster = new InMemoryPortfolioMaster();
_positionMaster = new InMemoryPositionMaster();
InMemorySecurityMaster securityMaster = new InMemorySecurityMaster();
securityMaster.add(new SecurityDocument(APPLE_SECURITY));
securityMaster.add(new SecurityDocument(INTEL_SECURITY));
BigDecimal quantity = BigDecimal.valueOf(20);
ManageablePosition position = new ManageablePosition(quantity, APPLE_SECURITY.getExternalIdBundle());
position.addTrade(new ManageableTrade(quantity,
APPLE_BUNDLE,
LocalDate.of(2012, 12, 1),