bbgo_origin/pkg/cmd/strategy/builtin.go

45 lines
1.8 KiB
Go
Raw Normal View History

2022-08-01 17:07:48 +00:00
package strategy
// import built-in strategies
import (
_ "github.com/c9s/bbgo/pkg/strategy/audacitymaker"
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"
_ "github.com/c9s/bbgo/pkg/strategy/elliottwave"
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"
2022-11-02 10:26:30 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/grid2"
_ "github.com/c9s/bbgo/pkg/strategy/harmonic"
2022-09-20 02:32:41 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/irr"
2021-11-21 18:14:44 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/kline"
2022-11-17 09:59:23 +00:00
_ "github.com/c9s/bbgo/pkg/strategy/linregmaker"
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"
_ "github.com/c9s/bbgo/pkg/strategy/trendtrader"
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"
)