From 5f1a220a40a2bd79c6a296ffa69f989c056529ea Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Tue, 04 Aug 2026 09:34:55 +0800
Subject: [PATCH] fix(gate): 修复网格交易止损计数和同网格重复触发问题
---
src/main/java/com/xcong/excoin/modules/gateApi/GateConfigPersistenceService.java | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/gateApi/GateConfigPersistenceService.java b/src/main/java/com/xcong/excoin/modules/gateApi/GateConfigPersistenceService.java
index 480b87c..f6e7000 100644
--- a/src/main/java/com/xcong/excoin/modules/gateApi/GateConfigPersistenceService.java
+++ b/src/main/java/com/xcong/excoin/modules/gateApi/GateConfigPersistenceService.java
@@ -103,6 +103,9 @@
.quantity(nvl(dto.getQuantity(), "2"))
.maxPositionSize(dto.getMaxPositionSize())
.stopLossCount(dto.getStopLossCount())
+ .takeProfitGridSpan(dto.getTakeProfitGridSpan())
+ .priceDriveEnabled(nvl(dto.getPriceDriveEnabled(), true))
+ .rounds(dto.getRounds())
.build();
}
--
Gitblit v1.9.1