Administrator
2026-06-15 c5fffc4a6d7f07e7073eb23a04839b1451f795fb
src/main/java/com/xcong/excoin/modules/gateApi/GateGridTradeService.java
@@ -745,7 +745,7 @@
//                );
//            }
            int shortTime = Integer.parseInt(config.getBaseQuantity()) + 1;
            int shortTime = Integer.parseInt(config.getBaseQuantity()) / Integer.parseInt(config.getQuantity()) + 1;
            for (int id = 2; id <= shortTime; id++) {
                GridElement elem = GridElement.findById(id);
                if (elem == null) {
@@ -768,7 +768,7 @@
            }
            int longTime = Integer.parseInt(config.getBaseQuantity()) + 1;
            int longTime = Integer.parseInt(config.getBaseQuantity()) / Integer.parseInt(config.getQuantity()) + 1;
            for (int id = -2; id >= -longTime; id--) {
                GridElement elem = GridElement.findById(id);
                if (elem == null) {