def fetch_prices(from_symbols, to_symbols, options)
      url = ["#{API_URL}pricemultifull"]
      url << "?fsyms=#{from_symbols}&tsyms=#{to_symbols}"
      url << "&e=#{options['exchange']}" if options["exchange"]
      url << "&tryConversion=true"