“Advice Required for Running 3 Algo Systems Simultaneously on AWS”

Hi Sir,
I want to run 3 different algos simultaneously:

75-min Algo
10-min Algo
25-min NIFTY Algo

All three systems have different logic, so I wanted your guidance on the best approach.
Should I create one master script where the data feed is common (1-min data) and then resample candles to 10/25/75 min, and run each strategy as a separate module?
OR
Is it better to run 3 separate scripts in parallel?

Also, I want to deploy and run this setup on AWS server, so stability and avoiding API errors is important.

What would be your advice, Sir?

Hi Shubham

Both the cases are possible

  1. You can get like 5 mins timeframe, and resample it to 10/25/75 min, and get a common feed. This is practically possible, but it will be comparatively difficult to code. Also this method can run 3 strategies on a singer server.

  2. Also for the second approach, you can keep all 3 algos separate, on different servers. To cut down the server cost you may deploy it on Linux server. This will be comparatively easy to code

1 Like