Ejemplo n.º 1
0
 public FundHistory GetFundHistory(StockSymbol symbol, DateTime startDate, DateTime endDate)
 {
     return(GetFundHistory(symbol.Name(), startDate, endDate));
 }
Ejemplo n.º 2
0
 public FundData GetFund(StockSymbol symbol)
 {
     return(GetFund(symbol.Name()));
 }
Ejemplo n.º 3
0
 public async Task <FundHistory> GetFundHistoryAsync(StockSymbol symbol, DateTime startDate, DateTime endDate)
 {
     return(await GetFundHistoryAsync(symbol.Name(), startDate, endDate));
 }
Ejemplo n.º 4
0
 public async Task <FundData> GetFundAsync(StockSymbol symbol)
 {
     return(await GetFundAsync(symbol.Name()));
 }