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"
|
2021-04-21 07:06:53 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/gap"
|
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-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"
|
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"
|
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"
|
2020-10-28 08:27:25 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/xpuremaker"
|
|
|
|
)
|