From 080b4dea9545cc0c9780bd749732387b206b825b Mon Sep 17 00:00:00 2001 From: c9s Date: Sun, 11 Sep 2022 16:56:05 +0800 Subject: [PATCH] bollmaker: add doc file for bollmaker --- pkg/strategy/bollmaker/doc.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pkg/strategy/bollmaker/doc.go diff --git a/pkg/strategy/bollmaker/doc.go b/pkg/strategy/bollmaker/doc.go new file mode 100644 index 000000000..f4320091e --- /dev/null +++ b/pkg/strategy/bollmaker/doc.go @@ -0,0 +1,6 @@ +// bollmaker is a maker strategy depends on the bollinger band +// +// bollmaker uses two bollinger bands for trading: +// 1) the first bollinger is a long-term time frame bollinger, it controls your position. (how much you can hold) +// 2) the second bollinger is a short-term time frame bollinger, it controls whether places the orders or not. +package bollmaker