2022-08-01 17:07:48 +00:00
|
|
|
package strategy
|
2020-10-28 08:27:25 +00:00
|
|
|
|
|
|
|
// import built-in strategies
|
|
|
|
import (
|
2023-09-26 07:32:55 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/atrpin"
|
2022-09-05 08:17:52 +00:00
|
|
|
_ "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"
|
2023-08-04 18:00:22 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/convert"
|
2022-06-07 12:26:56 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/dca"
|
2023-08-08 03:07:21 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/deposit2transfer"
|
2022-08-23 08:22:45 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/drift"
|
2022-09-01 04:09:03 +00:00
|
|
|
_ "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"
|
2023-03-10 09:39:31 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/fixedmaker"
|
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"
|
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"
|
2022-10-03 16:42:31 +00:00
|
|
|
_ "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"
|
2023-11-08 09:54:01 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/liquiditymaker"
|
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"
|
2023-10-11 07:50:44 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/random"
|
2021-12-12 09:19:27 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/rebalance"
|
2023-07-09 13:23:42 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/rsicross"
|
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"
|
2023-06-13 04:22:59 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/scmaker"
|
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-09-07 08:06:40 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/trendtrader"
|
2022-05-12 14:51:39 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/wall"
|
2023-06-08 07:54:32 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/xalign"
|
2021-05-11 17:21:40 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/xbalance"
|
2023-10-05 06:36:08 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/xfixedmaker"
|
2023-03-22 13:17:33 +00:00
|
|
|
_ "github.com/c9s/bbgo/pkg/strategy/xfunding"
|
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"
|
|
|
|
)
|