bbgo_origin/pkg/cmd/builtin.go

17 lines
576 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/buyandhold"
2020-11-07 04:00:45 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/flashcrash"
2020-10-29 13:09:48 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/grid"
2020-12-31 09:07:12 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/mirrormaker"
_ "github.com/c9s/bbgo/pkg/strategy/pricealert"
2021-02-14 17:26:46 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/support"
_ "github.com/c9s/bbgo/pkg/strategy/swing"
2020-12-31 09:07:12 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/trailingstop"
2021-03-21 04:43:41 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/xmaker"
_ "github.com/c9s/bbgo/pkg/strategy/xpuremaker"
)