Accepting output of the socket generated by Python in MQL5

Please find a running example. Important element is to create byte object of the payload instead of string before you send as reply. socket object produces and ingests only bytes import socket import threading import sys def actual_work(data): print(data) return b’ACK’ def daemon(): sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) sock.bind((‘127.0.0.1’, 6666)) print(“Listening on udp … Read more