I do get the same OpenSSL error.
(Edit: It's probably a thread problem, see edit below)
Note that Update_BitStamp does work correctly.
Only the call to Update_BitFinex gives the error.
Maybe api.bitfinex.com uses some SSL protocol which needs extra attention. (not sure yet what)
Also note that calling GetJSON(Read_URL_GET('url')) isn't really wise. When Read_URL_GET fails you don't have the option to catch that before reading an empty string into JSON. It would be wise to first read it into a string and then call GetJSON with that string.
Also... do I see correctly that you have switched the cells for bitfinex and bitstamp?
Edit: I think the problem is calling the OpenSSL libraries in
multiple threads at the same time. Try to call them one at a time and it should go correctly.
I believe OpenSSL can be used in multi-thread but the calling library needs to be aware of those threads and I don't thing the one in FPC is. (
https://www.openssl.org/blog/blog/2017/02/21/threads/)