From 8643b20a0ea1d7a1dd4976f8e073655cdda4d0d1 Mon Sep 17 00:00:00 2001 From: Reigo Reinmets Date: Wed, 12 Jan 2022 06:06:23 +0200 Subject: [PATCH] Improve documentation about /stopbuy command --- docs/strategy-callbacks.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/strategy-callbacks.md b/docs/strategy-callbacks.md index 8f6cd635e..1adb06ae7 100644 --- a/docs/strategy-callbacks.md +++ b/docs/strategy-callbacks.md @@ -581,13 +581,16 @@ Additional orders also mean additional fees and those orders don't count towards This callback is called very frequently, so you must keep your implementation as fast as possible. !!! Note "About stake size" - Using fixed stake size means it will be the amount used for the first order just like without position adjustment. - If you wish to buy additional orders with DCA then make sure to leave enough funds in the wallet for that. - Using 'unlimited' stake amount with DCA orders requires you to also implement custom_stake_amount callback to avoid allocating all funds to initial order. + Using fixed stake size means it will be the amount used for the first order, just like without position adjustment. + If you wish to buy additional orders with DCA, then make sure to leave enough funds in the wallet for that. + Using 'unlimited' stake amount with DCA orders requires you to also implement custom_stake_amount callback to avoid allocating all funds to the initial order. !!! Warning Stoploss is still calculated from the initial opening price, not averaged price. +!!! Warning "/stopbuy" + While `/stopbuy` command stops the bot from entering new trades, the position adjustment feature will continue buying new orders on existing trades. + !!! Warning "Backtesting" During backtesting this callback is called for each candle in `timeframe` or `timeframe_detail`, so performance will be affected.