1撤销限价后 市价分单

This commit is contained in:
2025-03-27 16:18:32 +08:00
parent 8cede57a70
commit ee148ed144
31 changed files with 1627 additions and 248 deletions

View File

@ -44,6 +44,9 @@ const (
SpotCallBack = "spot_callback:%s" //现货回调 {ordersn}
FutCallBack = "fut_callback:%s" //合约回调 {ordersn}
FutReducecCallback = "fut_reduce_callback:%v_%s" //合约减仓回调 {apiid,symbol}
SpotReduceCallback = "spot_reduce_callback:%v_%s" //现货减仓回调 {apiid,symbol}
//需要清理键值---------BEGIN---------------
SpotStopLossList = "spot_stoploss_list:%s" //现货止损待触发列表 {交易所类型code}

View File

@ -0,0 +1,6 @@
package rediskey
const (
// SysConfigKey 系统配置 {configKey}
SysConfigKey = "sys_config:%s"
)