Add warning about callback call frequency in backtesting

This commit is contained in:
Matthias 2023-01-20 07:06:54 +01:00
parent 81349c2a03
commit 20093ea090
1 changed files with 4 additions and 0 deletions

View File

@ -75,3 +75,7 @@ This loop will be repeated again and again until the bot is stopped.
!!! Note
Both Backtesting and Hyperopt include exchange default Fees in the calculation. Custom fees can be passed to backtesting / hyperopt by specifying the `--fee` argument.
!!! Warning "Callback call frequency"
Backtesting will call each callback at max. once per candle (`--timeframe-detail` modifies this behavior to once per detailed candle).
Most callbacks will be called once per iteration in live (usually every ~5s) - which can cause backtesting mismatches.