Ejemplo n.º 1
0
 public async Task <IEXResponse <AdvancedStatsResponse> > AdvancedStatsAsync(string symbol) =>
 await executor.SymbolExecuteAsync <AdvancedStatsResponse>("stock/[symbol]/advanced-stats", symbol);
Ejemplo n.º 2
0
 public async Task <BookResponse> BookAsync(string symbol) =>
 await executor.SymbolExecuteAsync <BookResponse>("stock/[symbol]/book", symbol, pk);
Ejemplo n.º 3
0
 public async Task <IEXResponse <decimal> > DataPointAsync(EconomicDataSymbol symbol) =>
 await executor.SymbolExecuteAsync <decimal>("data-points/market/[symbol]", symbol.GetDescriptionFromEnum());
Ejemplo n.º 4
0
 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);