新版仿ok交易所-后端
zyy
2026-01-27 e1cf5740980e055432013394f14e51e0cb661d7b
trading-order-huobi/src/main/java/com.yami.trading.huobi/data/internal/CryptosKlineServiceImpl.java
@@ -184,7 +184,7 @@
        }
        Kline kline = list.get(0);
        BigDecimal currentValue = AdjustmentValueCache.getCurrentValue().get(symbol);
        if (currentValue != null && currentValue.compareTo(BigDecimal.ZERO) > 0) {
        if (currentValue != null && currentValue.compareTo(BigDecimal.ZERO) != 0) {
            if (!kline.isAdjusted()){
                kline.setClose(kline.getClose().add(currentValue));
                kline.setOpen(kline.getOpen().add(currentValue));