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

- 将网格利率从0.004调整为0.0025
- 将预期利润从25调整为5
- 将基础数量和数量从15调整为33
- 将最大仓位大小从2调整为6
- 保持重启网格跨度为4不变
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
@@ -64,13 +64,13 @@
                    .leverage("100")
                    .marginMode("CROSS")
                    .positionMode("dual")
                    .gridRate(new BigDecimal("0.004"))
                    .expectedProfit(new BigDecimal("25"))
                    .gridRate(new BigDecimal("0.0025"))
                    .expectedProfit(new BigDecimal("5"))
                    .maxLoss(new BigDecimal("15"))
                    .baseQuantity("15")
                    .quantity("15")
                    .baseQuantity("33")
                    .quantity("33")
                    .maxPositionSize(66)
                    .restartGridSpan(4)
                    .maxPositionSize(2)
                    .priceScale(2)
                    .contractMultiplier(new BigDecimal("0.01"))
                    .unrealizedPnlPriceMode(GateConfig.PnLPriceMode.LAST_PRICE)