Hi @dennisve ,
Site speed does affect SEO performance. But there isn’t so much that can be done to optimize third party scripts although you could implement @JohnCodes defer solution ( with the reviews it would be better to use defer than async) or load the third party scripts only on the page they are used on for example if you only use the app on the product page you shouldn’t load the app scripts on every page (adding something like below within your tag should work).
{% if request.page_type == "product" %}
{% endif %}
However, there are likely other things on your site that can be improved to optimize your sites performance. If you can provide your website url we can have a look?
eStoreSpeedOptimization