public async Task <MultipleSymbolFullData> GetMultipleSymbolFullData(string[] fsyms, string[] tsyms,
                                                                      bool?tryConversion, string e)
 {
     return(await GetAsync <MultipleSymbolFullData>(
                PriceApiUrls.MultipleSymbolFullData(fsyms, tsyms, tryConversion, e))
            .ConfigureAwait(false));
 }
 public async Task <GenerateCustomAverage> GetGenerateCustomAverage(string fsym, string[] tsyms, string[] e)
 {
     return(await GetAsync <GenerateCustomAverage>(PriceApiUrls.GenerateCustomAverage(fsym, tsyms, e)));
 }
 public async Task <SingleSymbolPrice> GetSingleSymbolPrice(string fsym, string[] tsyms,
                                                            bool?tryConversion, string e)
 {
     return(await GetAsync <SingleSymbolPrice>(PriceApiUrls.SingleSymbolPrice(fsym, tsyms, tryConversion, e)));
 }
 public async Task <SingleSymbolPrice> GetSingleSymbolPrice(string fsym, string[] tsyms)
 {
     return(await GetAsync <SingleSymbolPrice>(PriceApiUrls.SingleSymbolPrice(fsym, tsyms, null, null)));
 }
 public async Task <MultipleSymbolPrice> GetMultipleSymbolPrice(string[] fsyms, string[] tsyms)
 {
     return(await GetAsync <MultipleSymbolPrice>(PriceApiUrls.MultipleSymbolPrice(fsyms, tsyms, null, null))
            .ConfigureAwait(false));
 }