Reduce wait time in the PricingMarketDataHelper

This commit is contained in:
2024-04-09 20:40:00 -04:00
parent a62ffc1a0f
commit c5713cb967
2 changed files with 2 additions and 2 deletions

View File

@@ -50,8 +50,8 @@ namespace MarketData.Helper
}
public class PricingMarketDataHelper
{
private static int MaxThreads = 20; // (int)ThreadHelperEnum.MaxThreads;
private static int WaitBetweenRequests=300;
private static int MaxThreads = (int)ThreadHelperEnum.MaxThreads;
private static int WaitBetweenRequests=125;
private List<String> symbols;
private int currentIndex = 0;