diff --git a/en/develop/strategy-callbacks/index.html b/en/develop/strategy-callbacks/index.html index 87a603ec7..64fc026b8 100644 --- a/en/develop/strategy-callbacks/index.html +++ b/en/develop/strategy-callbacks/index.html @@ -3034,7 +3034,8 @@ Adjustment orders can be assigned with a tag by returning a 2 element Tuple, wit
Loose Logic
On dry and live run, this function will be called every throttle_process_secs (default to 5s). If you have a loose logic, (e.g. increase position if RSI of the last candle is below 30), your bot will do extra re-entry every 5 secs until you either it run out of money, hit the max_position_adjustment limit, or a new candle with RSI more than 30 arrived.
Same thing also can happen with partial exit. So be sure to have a strict logic and/or check for the last filled order and if an order is already open.
+Same thing also can happen with partial exit.
+So be sure to have a strict logic and/or check for the last filled order and if an order is already open.
Performance with many position adjustments