public async Task <IEXResponse <DeepResponse> > DeepAsync(IEnumerable <string> symbols) => await executor.SymbolsExecuteAsync <DeepResponse>("deep", symbols);
public async Task <IEXResponse <IEnumerable <TOPSResponse> > > TOPSAsync(IEnumerable <string> symbols) { if (symbols.Count() > 0) { return(await _executor.SymbolsExecuteAsync <IEnumerable <TOPSResponse> >("tops", symbols)); } return(await _executor.NoParamExecute <IEnumerable <TOPSResponse> >("tops")); }
public async Task <Dictionary <string, DeepAuctionResponse> > DeepActionAsync(IEnumerable <string> symbols) => await _executor.SymbolsExecuteAsync <Dictionary <string, DeepAuctionResponse> >("deep/auction", symbols, _pk);