This commit is contained in:
2025-02-06 11:14:33 +08:00
commit 07847a2d9e
535 changed files with 65131 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package grid_spotpolicy_state
// 现货交易网格状态
const (
Wait = 1 // 等待触发
Starting = 2 // 正在启动
Start = 3 // 启动完成
Stopping = 4 // 正在停止
ManualStop = 5 // 手动停止
ProfitStop = 6 // 止盈停止
LossStop = 7 // 止损停止
SignalStop = 8 // 信号触发停止
)