autotrader/strategy.go
2023-05-12 19:36:03 -05:00

7 lines
82 B
Go

package autotrader
type Strategy interface {
Init(t *Trader)
Next(t *Trader)
}