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.
 
 

13 lines
214 B

package trade
// ITradeStrategy 下单策略
// 根据购买信号和账户信息生成下单参数
type ITradeStrategy interface {
OnSingal()
}
type TradeStrategyParam struct {
}
type TradeStrategy struct {
}