Dynamic Data/functionality

What is a good course for learning real time data OR dynamic fundamentals as an over all. Not specific to a particular feed. Like let’s say I build a machine learning model. How would I deploy it in real time or at least understand how to build it dynamically. Even get data dynamically. I have a strong grasp on the static nature of getting and computing from a single cast or Api call and I understand FIX or a web socket as a fundamental but would like to grasp the in motion nature of it and how to learn the engineering of it ??? Like let’s say I have a function of two numbers…how do I get two numbers every two minutes. Feed it to the function every 2 minutes but then what do I do with it every two minutes. Not from the server side but the client side. I am trying to understand this process as a whole and a fundamental and not from a particular data feed or from software that is designed to do it for me.

Hi Philip,

I believe more than a course, you might have to look more in the protocols side. You can start with the following tools:
WebSockets: Practice implementing WebSocket clients for live data feeds.
Asynchronous Programming: async programming in Python (asyncio) or JavaScript (Promises, async/await).
Data Polling and Scheduling: Experiment with libraries like schedule in Python for periodic function execution.

MDN can be a good starting point. The WebSocket API (WebSockets) - Web APIs | MDN