LesterCovax / crypto-sheets

Google Sheets script editor code for managing a cryptocurrency tracking spreadsheet
https://www.reddit.com/r/cryptosheets
GNU General Public License v3.0
475 stars 70 forks source link

ID instead of Symbol and fixing Limit #20

Closed ddarbs closed 6 years ago

ddarbs commented 6 years ago

Reference Issue #15 and #18

ddarbs commented 6 years ago

var url = 'https://api.coinmarketcap.com/v1/ticker/limit=0?&convert=' + targetCurrency;

needs to be

var url = 'https://api.coinmarketcap.com/v1/ticker/?limit=0&convert=' + targetCurrency;

I made the changes requested.