SimplePosition position = new SimplePosition();
position.setUniqueId(uniqueId);
Map<String, String> hashFields = jedis.hgetAll(redisKey);
position.setQuantity(new BigDecimal(hashFields.get("QTY")));
ExternalId secId = ExternalId.parse(hashFields.get("SEC"));
SimpleSecurityLink secLink = new SimpleSecurityLink();
secLink.addExternalId(secId);
position.setSecurityLink(secLink);
for (Map.Entry<String, String> field : hashFields.entrySet()) {
if (!field.getKey().startsWith("ATT-")) {
continue;