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 |
|
|
|
import "github.com/govalues/decimal" |
|
|
|
// todo Exit 止盈止损策略(trading service 管理) |
|
type IExitStrategy interface { |
|
Name() string // 获取策略名称,便于日志 |
|
Tick(ctx IExitStrategyContext) |
|
} |
|
|
|
type IExitStrategyContext interface { |
|
LastPrice() decimal.Decimal |
|
}
|
|
|