| | |
| | | import java.util.stream.Collectors; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | * 深度、近期交易记录 websocket启动服务 |
| | | */ |
| | | @Component |
| | |
| | | symbol = item.getSymbol(); |
| | | item = this.itemService.findBySymbol(symbol); |
| | | //停牌时不更新 |
| | | if (itemService.isSuspended(item)) { |
| | | if (itemService.isSuspended(symbol)) { |
| | | return; |
| | | } |
| | | Double currentValue = AdjustmentValueCache.getCurrentValue().get(symbol).doubleValue(); |
| | |
| | | |
| | | if (currentValue != null && currentValue != 0) { |
| | | realtime.setClose(new BigDecimal(Arith.add(close, currentValue.doubleValue()))); |
| | | realtime.setVolume(new BigDecimal(Arith.add(vol, Arith.mul(Arith.div(currentValue, close), vol)))); |
| | | realtime.setAmount(new BigDecimal(Arith.add(amount, Arith.mul(Arith.div(currentValue, close), amount)))); |
| | | //realtime.setVolume(new BigDecimal(Arith.add(vol, Arith.mul(Arith.div(currentValue, close), vol)))); |
| | | //realtime.setAmount(new BigDecimal(Arith.add(amount, Arith.mul(Arith.div(currentValue, close), amount)))); |
| | | realtime.setHigh(realtime.getHigh().add(BigDecimal.valueOf(currentValue))); |
| | | realtime.setLow(realtime.getLow().add(BigDecimal.valueOf(currentValue))); |
| | | } |
| | | |
| | | Double high = DataCache.getRealtimeHigh().get(symbol); |
| | |
| | | realtime.setAmount(realtime.getAmount().multiply(item.getMultiple())); |
| | | } |
| | | |
| | | if (high != null && high >= realtime.getClose().doubleValue()) { |
| | | /*if (high != null && high >= realtime.getClose().doubleValue()) { |
| | | realtime.setHigh(new BigDecimal(high)); |
| | | } |
| | | |
| | | if (low != null && low <= realtime.getClose().doubleValue()) { |
| | | realtime.setLow(new BigDecimal(low)); |
| | | } |
| | | }*/ |
| | | |
| | | Double h24Before = DataCache.getRealtime24HBeforeOpen().get(symbol); |
| | | /*ouble h24Before = DataCache.getRealtime24HBeforeOpen().get(symbol); |
| | | if (h24Before != null) { |
| | | realtime.setOpen(new BigDecimal(h24Before)); |
| | | } |
| | | }*/ |
| | | |
| | | /*if (realtime.getSymbol().equals("axsusdt")) { |
| | | System.out.println("axsusdt2" + realtime); |
| | | }*/ |
| | | DataCache.putRealtime(symbol, realtime); |
| | | // System.out.println(JSONObject.toJSONString(realtime)); |
| | | } |