Rename "shuffle" parameter to "shuffle_freq"

This commit is contained in:
Matthias
2022-10-30 09:48:55 +01:00
parent a323acf343
commit 5013351143
2 changed files with 5 additions and 5 deletions

View File

@@ -287,12 +287,12 @@ Min price precision for SHITCOIN/BTC is 8 decimals. If its price is 0.00000011 -
Shuffles (randomizes) pairs in the pairlist. It can be used for preventing the bot from trading some of the pairs more frequently then others when you want all pairs be treated with the same priority.
By default, ShuffleFilter will shuffle pairs once per candle.
To shuffle on every iteration, set `"shuffle"` to `"iteration"` instead of the default of `"candle"`.
To shuffle on every iteration, set `"shuffle_frequency"` to `"iteration"` instead of the default of `"candle"`.
``` json
{
"method": "ShuffleFilter",
"shuffle": "candle",
"shuffle_frequency": "candle",
"seed": 42
}