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