You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi!
I use all default configs downloaded from this git in 3 fregtrade docker containers live.
Sometimes I see when one or more processes use 100% of one processor core.
I don't see any errors, like "Outdated history for pair..." or "Strategy analysis took..." I just want to ask if this is normal behavior, that there is no parallelization across cores? Or should I think about switching to a more powerful processor with a higher frequency per core? Now I use Hetzner VPS on ARM Ampere Altra CPU.
The text was updated successfully, but these errors were encountered:
Yes, this is normal behavior. Freqtrade runs on a single core due to Python's Global Interpreter Lock (GIL). Computational intensive strategies, such as NostalgiaForInfinity, which rely on multiple indicators and historical data, can cause spikes to 100% on one core, especially during indicator calculations.
However, this typically has no significant impact because trading strategies like NostalgiaForInfinity don't rely on millisecond-level precision. The bot operates on candle intervals (e.g., 5 minutes), so slight delays during processing usually don't significantly affect trade execution or performance.
Switching to a CPU with higher single-core performance may help if the load causes noticeable delays, but as you mentioned, nothing appears in the error logs. I tested this on an i9-13900H and also observed occasional spikes to 100% on the utilized single core.
Hi!
I use all default configs downloaded from this git in 3 fregtrade docker containers live.
Sometimes I see when one or more processes use 100% of one processor core.
I don't see any errors, like "Outdated history for pair..." or "Strategy analysis took..." I just want to ask if this is normal behavior, that there is no parallelization across cores? Or should I think about switching to a more powerful processor with a higher frequency per core? Now I use Hetzner VPS on ARM Ampere Altra CPU.
The text was updated successfully, but these errors were encountered: