Administrator
2026-06-17 0d326d344103a0c57905b8189d6784e76d1e524d
src/main/java/com/xcong/excoin/modules/gateApi/GateGridTradeService.java
@@ -1127,18 +1127,22 @@
            return;
        }
        BigDecimal triggerPrice = newEntryGrid.getGridPrice();
        // [Gate-BugFix] 防止与"仓位归零"重复下单:若该网格已有挂单则跳过
        if (!newEntryGrid.isHasLongOrder()) {
            BigDecimal triggerPrice = newEntryGrid.getGridPrice();
        // 累计止损张数 + 当前止损量作为追单size,不再依赖positionSize(避免WS竞态)
        accumulatedLongLossCount += Integer.parseInt(config.getQuantity());
        String size = String.valueOf(accumulatedLongLossCount + Integer.parseInt(config.getQuantity()));
        log.info("[Gate] 多仓止损触发 gridId:{}, 在gridId:{}挂{}基础张多单",
                gridId, newEntryGridId, size);
            // 累计止损张数 + 当前止损量作为追单size,不再依赖positionSize(避免WS竞态)
            accumulatedLongLossCount += Integer.parseInt(config.getQuantity());
            String size = String.valueOf(accumulatedLongLossCount + Integer.parseInt(config.getQuantity()));
            log.info("[Gate] 多仓止损触发 gridId:{}, 在gridId:{}挂{}基础张多单",
                    gridId, newEntryGridId, size);
        newEntryGrid.getLongTraderParam().setQuantity(size);
        placeEntryOrderWithPreFlag(newEntryGrid, true, triggerPrice,
                FuturesPriceTrigger.RuleEnum.NUMBER_1, size);
            newEntryGrid.getLongTraderParam().setQuantity(size);
            placeEntryOrderWithPreFlag(newEntryGrid, true, triggerPrice,
                    FuturesPriceTrigger.RuleEnum.NUMBER_1, size);
        }else{
            log.warn("[Gate] 多仓止损触发 gridId:{}, 目标gridId:{}已有挂单,跳过重复下单", gridId, newEntryGridId);
        }
        int cancelGridId = gridId + 2;
        GridElement cancelGrid = GridElement.findById(cancelGridId);
@@ -1182,16 +1186,23 @@
            return;
        }
        BigDecimal triggerPrice = newEntryGrid.getGridPrice();
        // [Gate-BugFix] 防止与"仓位归零"重复下单:若该网格已有挂单则跳过
        if (!newEntryGrid.isHasShortOrder()) {
            BigDecimal triggerPrice = newEntryGrid.getGridPrice();
        // 累计止损张数 + 当前止损量作为追单size,不再依赖positionSize(避免WS竞态)
        accumulatedShortLossCount += Integer.parseInt(config.getQuantity());
        String size = String.valueOf(accumulatedShortLossCount + Integer.parseInt(config.getQuantity()));
        log.info("[Gate] 空仓止损触发 gridId:{}, 在gridId:{}挂{}基础张空单",
                gridId, newEntryGridId, size);
        newEntryGrid.getShortTraderParam().setQuantity(size);
        placeEntryOrderWithPreFlag(newEntryGrid, false, triggerPrice,
                FuturesPriceTrigger.RuleEnum.NUMBER_2, negate(size));
            // 累计止损张数 + 当前止损量作为追单size,不再依赖positionSize(避免WS竞态)
            accumulatedShortLossCount += Integer.parseInt(config.getQuantity());
            String size = String.valueOf(accumulatedShortLossCount + Integer.parseInt(config.getQuantity()));
            log.info("[Gate] 空仓止损触发 gridId:{}, 在gridId:{}挂{}基础张空单",
                    gridId, newEntryGridId, size);
            newEntryGrid.getShortTraderParam().setQuantity(size);
            placeEntryOrderWithPreFlag(newEntryGrid, false, triggerPrice,
                    FuturesPriceTrigger.RuleEnum.NUMBER_2, negate(size));
        }else{
            log.warn("[Gate] 空仓止损触发 gridId:{}, 目标gridId:{}已有挂单,跳过重复下单", gridId, newEntryGridId);
        }
        int cancelGridId = gridId - 2;