I already have a working trading algorithm written in Python; now I need it wired into two external services so it can run live. First, the script must pull market data, trading signals, and historical data from the CQG Web API. Connection handling, authentication, and robust reconnection logic are essential—I want the feed to recover gracefully if CQG drops for any reason. Second, the same codebase has to place and manage market, limit, and stop orders through the Trading Technologies order API. This includes submitting new orders, modifying or cancelling existing ones, and confirming fills in real time. For clarity, here is what I expect back: • A self-contained Python module (or set of classes) that plugs into my existing strategy • Clear instructions on any environment variables, keys, or library versions required • Basic unit tests or a quick demo script proving data retrieval from CQG and order execution via TT • Brief inline comments so I can extend or tweak the calls later If you have prior experience with either CQG Web API or Trading Technologies FIX/REST endpoints, that will speed things up, but solid API integration skills in Python are the key. Let me know your estimated turnaround and any questions you need answered before starting. References : https://help.cqg.com/apihelp/#!Documents/cqgwebapi.htm https://library.tradingtechnologies.com/tt-net-sdk/articles/gs-introduction.html