Update docs re: bot_loop_start in backtest

This commit is contained in:
Andy Lawless
2023-03-03 20:46:43 +00:00
parent a3dee9350f
commit b262f0b374
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -51,7 +51,8 @@ During hyperopt, this runs only once at startup.
## Bot loop start
A simple callback which is called once at the start of every bot throttling iteration (roughly every 5 seconds, unless configured differently).
A simple callback which is called once at the start of every bot throttling iteration in dry/live mode (roughly every 5
seconds, unless configured differently) or once per candle in backtest/hyperopt mode.
This can be used to perform calculations which are pair independent (apply to all pairs), loading of external data, etc.
``` python