You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package strategy |
|
|
|
type StrategyType int32 |
|
|
|
const ( |
|
_ StrategyType = iota |
|
StrategyTypeSig // 交易信号策略 |
|
StrategyTypeTrade // 交易下单策略 |
|
StrategyTypeClose // 交易平仓策略 |
|
)
|
|
|