2020-10-28 08:27:25 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
// import built-in strategies
|
|
|
|
import (
|
2020-11-10 11:06:20 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/bollgrid"
|
2020-10-28 08:27:25 +00:00
|
|
|
_ "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"
|
2020-10-28 08:27:25 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/pricealert"
|
2021-02-10 16:21:56 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/sat"
|
2020-10-28 08:27:25 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/swing"
|
2020-12-31 09:07:12 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/trailingstop"
|
2020-10-28 08:27:25 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/xpuremaker"
|
|
|
|
)
|