From 18e0fbb0a016f741963e649860148397a0867f27 Mon Sep 17 00:00:00 2001 From: c9s Date: Thu, 18 Aug 2022 13:43:22 +0800 Subject: [PATCH] update release note --- doc/release/v1.39.0.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/doc/release/v1.39.0.md b/doc/release/v1.39.0.md index 64e331f9e..e0bd92e58 100644 --- a/doc/release/v1.39.0.md +++ b/doc/release/v1.39.0.md @@ -1,3 +1,33 @@ +## Fixes + +- fixed protective stop loss for long position. +- fixed trailing stop for long position. +- fixed trade collector concurrent write issue. +- fixed cpu profile starter. +- fixed rbtree and add panic check. +- fixed binance futures trade, position and order type conversion. + +## Features + +- added telegram photo upload support. +- added multi-symbol support to active order book and trade collector. +- added max/binance query order service support. +- added binance QueryOrderTrades API +- added ftx order amount fee conversion. +- added default fee rate to FTX exchange. +- added leverage/risk calculator. +- optimizer: calculate equity diff from whole assets instead of first symbol. +- added optimizeex command, a hyperparameter optimization tool + +## Strategies Updates + +- autoborrow: add debtRatio +- drift: added smart cancel, fixed position bugs, added multiple level trailing stop, removed takeProftFactor, use fisher transform, added 1m drift for takeprofit/stoploss, rebalance position according to the trendline. +- supertrend: output profit stats and calculate quantity by risk/leverage. +- pivotshort: added trendema and fixed initial ema value. +- pivotshort: added SideEffectTypeAutoRepay to pivotshort take-profit order +- factorzoo: integrated logistic regression, indicator refactoring and updates. + [Full Changelog](https://github.com/c9s/bbgo/compare/v1.38.0...main) - [#882](https://github.com/c9s/bbgo/pull/882): strategy/autoborrow: add debt re-balancing