コード例 #1
0
 public async Task <IEXResponse <DeepResponse> > DeepAsync(IEnumerable <string> symbols) =>
 await executor.SymbolsExecuteAsync <DeepResponse>("deep", symbols);
コード例 #2
0
ファイル: MarketService.cs プロジェクト: Flexman/IEXSharp
 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"));
 }
コード例 #3
0
 public async Task <Dictionary <string, DeepAuctionResponse> > DeepActionAsync(IEnumerable <string> symbols)
 => await _executor.SymbolsExecuteAsync <Dictionary <string, DeepAuctionResponse> >("deep/auction", symbols, _pk);