Administrator
18 hours ago b620a53a5d7e899b2d26dd1d85af2987faca204c
fix(gateApi): 调整网格交易参数配置

- 将网格利率从 0.0015 调整为 0.005
- 将预期收益从 0.5 调整为 0.15
- 将止损次数从 3 次调整为 0 次
1 files modified
6 ■■■■ changed files
src/main/java/com/xcong/excoin/modules/gateApi/GateWebSocketClientManager.java 6 ●●●● patch | view | raw | blame | history
src/main/java/com/xcong/excoin/modules/gateApi/GateWebSocketClientManager.java
@@ -64,13 +64,13 @@
                    .leverage("100")
                    .marginMode("CROSS")
                    .positionMode("dual")
                    .gridRate(new BigDecimal("0.0015"))
                    .expectedProfit(new BigDecimal("0.5"))
                    .gridRate(new BigDecimal("0.005"))
                    .expectedProfit(new BigDecimal("0.15"))
                    .maxLoss(new BigDecimal("1.5"))
                    .baseQuantity("2")
                    .quantity("2")
                    .maxPositionSize(4)
                    .stopLossCount(3)
                    .stopLossCount(0)
                    .restartGridSpan(2)
                    .priceScale(2)
                    .contractMultiplier(new BigDecimal("0.01"))