I tried the following code but it does not return the last two days of data. any solution?
googleTrends.interestOverTime({
keyword: 'bitcoin',
startTime: new Date('2020-02-03'),
granularTimeResolution: true
})
.then(function(results){
console.log('These results are awesome', results);
})
.catch(function(err){
console.error('Oh no there was an error', err);
});
I tried the following code but it does not return the last two days of data. any solution?