[docs] Update RateLimit value [small]
## Summary Fix very small mistake in docs, that might confuse people. Let me know if this is the correct value now, there is still another 3100 in there, which I think makes sense there and is correct. ## Quick changelog Changed the `rateLimit` 3100 value to 200, to match the 200ms and thus 0.2s delay.
This commit is contained in:
parent
7ae9b90174
commit
f365e68706
@ -41,12 +41,12 @@ In case of problems related to rate-limits (usually DDOS Exceptions in your logs
|
|||||||
"ccxt_config": {"enableRateLimit": true},
|
"ccxt_config": {"enableRateLimit": true},
|
||||||
"ccxt_async_config": {
|
"ccxt_async_config": {
|
||||||
"enableRateLimit": true,
|
"enableRateLimit": true,
|
||||||
"rateLimit": 3100
|
"rateLimit": 200
|
||||||
},
|
},
|
||||||
```
|
```
|
||||||
|
|
||||||
This configuration enables kraken, as well as rate-limiting to avoid bans from the exchange.
|
This configuration enables kraken, as well as rate-limiting to avoid bans from the exchange.
|
||||||
`"rateLimit": 3100` defines a wait-event of 0.2s between each call. This can also be completely disabled by setting `"enableRateLimit"` to false.
|
`"rateLimit": 200` defines a wait-event of 0.2s between each call. This can also be completely disabled by setting `"enableRateLimit"` to false.
|
||||||
|
|
||||||
!!! Note
|
!!! Note
|
||||||
Optimal settings for rate-limiting depend on the exchange and the size of the whitelist, so an ideal parameter will vary on many other settings.
|
Optimal settings for rate-limiting depend on the exchange and the size of the whitelist, so an ideal parameter will vary on many other settings.
|
||||||
|
Loading…
Reference in New Issue
Block a user