def getDailyTokenValues():
url = "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum,litecoin,clover-finance,fetch-ai,stellar,compound-governance-token,the-graph,cardano,amp-token,auction,loopring,melon,iexec-rlc,iotex,jasmycoin,cryptex-finance,render-token&vs_currencies=usd&x_cg_demo_api_key=CG-************************"
response = urlopen(url)
data_json = json.loads(response.read())
if todayString == shortDateString:
global currentBitcoinTokenValue
currentBitcoinTokenValue = data_json['bitcoin']['usd']
global currentEthereumTokenValue
currentEthereumTokenValue = data_json['ethereum']['usd']
global currentLitecoinTokenValue
currentLitecoinTokenValue = data_json['litecoin']['usd']
global currentCloverTokenValue
currentCloverTokenValue = data_json['clover-finance']['usd']
global currentFetchTokenValue
currentFetchTokenValue = data_json['fetch-ai']['usd']
global currentStellarTokenValue
currentStellarTokenValue = data_json['stellar']['usd']
global currentCompoundTokenValue
#Truncated for display#