public async Task <IEXResponse <AdvancedStatsResponse> > AdvancedStatsAsync(string symbol) => await executor.SymbolExecuteAsync <AdvancedStatsResponse>("stock/[symbol]/advanced-stats", symbol);
public async Task <BookResponse> BookAsync(string symbol) => await executor.SymbolExecuteAsync <BookResponse>("stock/[symbol]/book", symbol, pk);
public async Task <IEXResponse <decimal> > DataPointAsync(EconomicDataSymbol symbol) => await executor.SymbolExecuteAsync <decimal>("data-points/market/[symbol]", symbol.GetDescriptionFromEnum());
public async Task <IEXResponse <CompanyResponse> > CompanyAsync(string symbol) => await executor.SymbolExecuteAsync <CompanyResponse>("stock/[symbol]/company", symbol);
public async Task <IEXResponse <IEnumerable <ListedRegulationSHOThresholdSecuritiesListResponse> > > ListedRegulationSHOThresholdSecuritiesListAsync(string symbol) => await executor.SymbolExecuteAsync <IEnumerable <ListedRegulationSHOThresholdSecuritiesListResponse> >( "stock/[symbol]/threshold-securities", symbol);