bbgo_origin/pkg/cmd/builtin.go

21 lines
744 B
Go
Raw Normal View History

package cmd
// import built-in strategies
import (
2020-11-10 11:06:20 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/bollgrid"
_ "github.com/c9s/bbgo/pkg/strategy/bollpp"
_ "github.com/c9s/bbgo/pkg/strategy/buyandhold"
2021-08-26 03:31:52 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/etf"
2020-11-07 04:00:45 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/flashcrash"
_ "github.com/c9s/bbgo/pkg/strategy/gap"
2020-10-29 13:09:48 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/grid"
_ "github.com/c9s/bbgo/pkg/strategy/pricealert"
2021-05-02 10:03:41 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/schedule"
2021-02-14 17:26:46 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/support"
_ "github.com/c9s/bbgo/pkg/strategy/swing"
2021-10-14 04:04:56 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/emastop"
2021-05-11 17:21:40 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/xbalance"
2021-03-21 04:43:41 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/xmaker"
_ "github.com/c9s/bbgo/pkg/strategy/xpuremaker"
)