新版仿ok交易所-后端
1
zj
2026-05-15 7d9f0356f7f68caf08aa93a51a31fe9d6d480f42
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));