Hi, I want to run same algorithm on multiple stocks using multiprocessing . Is it possible with kite Api? I wrote a piece of code but it did not work out.
Lets Example: def strategy() logic code
processes = [multiprocessing.Process(target= strategy, args=(symbol,)) for symbol in stocks]
# Start and run the processes concurrently for process in processes: process.start()
# Wait for all processes to finish for process in processes: process.join()