From 968af40cb21a33b6845df767631be92c714666d4 Mon Sep 17 00:00:00 2001 From: c9s Date: Tue, 27 Oct 2020 14:11:07 +0800 Subject: [PATCH] update readme for builtin strategies --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b79785970..691a070fa 100644 --- a/README.md +++ b/README.md @@ -107,9 +107,13 @@ streambook := types.NewStreamBook(symbol) streambook.BindStream(stream) ``` -## Strategies +## Built-in Strategies -Please check out the directory: [strategies](strategies) +Check out the strategy directory [strategy](pkg/strategy) for all built-in strategies: + +- pricealert strategy demonstrates how to use the notification system [pricealert](pkg/strategy/pricealert) +- xpuremaker strategy demonstrates how to maintain the orderbook and submit maker orders [xpuremaker](pkg/strategy/xpuremaker) +- buyandhold strategy demonstrates how to subscribe kline events and submit market order [buyandhold](pkg/strategy/buyandhold) ## New API Design