bbgo_origin/pkg/cmd/strategy/builtin.go

38 lines
1.5 KiB
Go
Raw Normal View History

2022-08-01 17:07:48 +00:00
package strategy
// 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"
_ "github.com/c9s/bbgo/pkg/strategy/drift"
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"
_ "github.com/c9s/bbgo/pkg/strategy/pivotshort"
_ "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"
_ "github.com/c9s/bbgo/pkg/strategy/rsmaker"
2021-05-02 10:03:41 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/schedule"
_ "github.com/c9s/bbgo/pkg/strategy/skeleton"
_ "github.com/c9s/bbgo/pkg/strategy/supertrend"
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 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"
_ "github.com/c9s/bbgo/pkg/strategy/xpuremaker"
)