Python Forum
Seeking some script design advice... involves asyncio, threads, multiprocessing
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Seeking some script design advice... involves asyncio, threads, multiprocessing
#2
Sounds like you're tackling a complex but exciting project with your stock algo implementation! Given the setup with Polygon for market data and Tradestation for execution, your approach makes sense with multiprocessing handling the data streaming and separate threads for each stock symbol for parallel processing. Regarding asyncio vs threading for the Tradestation API interactions, asyncio would likely fit well since it's designed for asynchronous I/O operations, which are crucial for handling multiple API calls efficiently without blocking. It can help manage the I/O-bound operations effectively across multiple symbols. Your plan to utilize multiprocessing to handle the data streams and distribute the workload across cores seems solid for scaling up with various symbols. Just monitor resource utilization and consider profiling to optimize performance as you scale.
Reply


Messages In This Thread
RE: Seeking some script design advice... involves asyncio, threads, multiprocessing - by AdamHensley - Jul-05-2024, 10:39 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Seeking advice on dask distributed sawtooth500 4 1,619 Apr-15-2024, 11:07 PM
Last Post: sawtooth500
  Multiprocessing: Threads work well. Processes don't work. viyubu 11 4,086 Dec-03-2023, 08:50 PM
Last Post: snippsat
  New user seeking help EdRaponi 2 61,054 Jun-23-2020, 12:03 PM
Last Post: EdRaponi
  Newbie seeking help with DNS query DaytonJones 0 2,718 Sep-21-2018, 06:29 PM
Last Post: DaytonJones
  Class Modules, and Passing Variables: Seeking Advice Robo_Pi 21 13,735 Mar-02-2018, 05:22 PM
Last Post: snippsat
  Seeking feedback on my script-in-progress league55 2 3,412 Feb-12-2018, 03:03 PM
Last Post: league55

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020