Administrator
2026-06-04 328cf4fc0461b0b258e90e35ff57a1dcf95b6b92
fix(gateApi): 调整网格交易参数配置

- 将网格利率从 0.0025 调整为 0.002
- 将预期利润从 3 调整为 0.5
- 将最大亏损从 10 调整为 1.5
- 将基础数量从 30 调整为 10
- 将数量从 3 调整为 1
1 files modified
10 ■■■■ changed files
src/main/java/com/xcong/excoin/modules/gateApi/GateWebSocketClientManager.java 10 ●●●● patch | view | raw | blame | history
src/main/java/com/xcong/excoin/modules/gateApi/GateWebSocketClientManager.java
@@ -66,11 +66,11 @@
                    .leverage("100")
                    .marginMode("CROSS")
                    .positionMode("dual")
                    .gridRate(new BigDecimal("0.0025"))
                    .expectedProfit(new BigDecimal("3"))
                    .maxLoss(new BigDecimal("10"))
                    .baseQuantity("30")
                    .quantity("3")
                    .gridRate(new BigDecimal("0.002"))
                    .expectedProfit(new BigDecimal("0.5"))
                    .maxLoss(new BigDecimal("1.5"))
                    .baseQuantity("10")
                    .quantity("1")
                    .priceScale(2)
                    .contractMultiplier(new BigDecimal("0.01"))
                    .unrealizedPnlPriceMode(GateConfig.PnLPriceMode.LAST_PRICE)