2020-10-28 08:27:25 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
// import built-in strategies
|
|
|
|
import (
|
2022-04-23 07:00:53 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/autoborrow"
|
2020-11-10 11:06:20 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/bollgrid"
|
2022-01-08 17:20:47 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/bollmaker"
|
2022-06-07 12:26:56 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/dca"
|
2021-10-14 06:24:08 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/emastop"
|
2021-08-26 03:31:52 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/etf"
|
2022-04-18 12:56:15 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/ewoDgtrd"
|
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/factorzoo"
|
2020-11-07 04:00:45 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/flashcrash"
|
2022-05-29 13:27:58 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/fmaker"
|
2022-01-13 11:35:05 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/funding"
|
2020-10-29 13:09:48 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/grid"
|
2021-11-21 18:14:44 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/kline"
|
2022-06-15 17:46:33 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/marketcap"
|
2022-05-10 09:11:24 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/pivotshort"
|
2020-10-28 08:27:25 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/pricealert"
|
2021-10-14 06:24:08 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/pricedrop"
|
2021-12-12 09:19:27 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/rebalance"
|
2022-05-17 11:21:20 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/rsmaker"
|
2021-05-02 10:03:41 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/schedule"
|
2022-02-15 05:55:19 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/skeleton"
|
2022-05-27 06:36:48 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/supertrend"
|
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"
|
2021-10-14 06:24:08 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/techsignal"
|
2022-05-12 14:51:39 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/wall"
|
2021-05-11 17:21:40 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/xbalance"
|
2022-01-13 11:35:05 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/xgap"
|
2021-03-21 04:43:41 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/xmaker"
|
2021-11-21 18:14:44 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/xnav"
|
2020-10-28 08:27:25 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/xpuremaker"
|
2022-07-01 10:38:25 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/drift"
|
2020-10-28 08:27:25 +00:00
|
|
|
)
|