1、反向下单初始化

This commit is contained in:
2025-06-17 14:09:37 +08:00
parent e943a47121
commit 3013486dd4
14 changed files with 1042 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package binanceservice
import "github.com/go-admin-team/go-admin-core/sdk/service"
type BinanceReverseFuturesService struct {
service.Service
}
//
func (e *BinanceReverseFuturesService) DoReverse() error {
apiInfo, ok := ShouldReverse(apiKey)
//TODO: 实现反向开仓逻辑
return nil
}