@sdetweil still waiting to see if it will display, theres a big delay, but no errors have popped up yet
scheduleUpdate: function(delay) {
var loadTime = this.config.updateInterval;
if (typeof delay !== “undefined” && delay >= 0) {
loadTime = delay;
}
var that = this;
setInterval(function() {
that.getStocks();
if(that.config.currency.toLowerCase() != "usd"){
that.getExchangeRate();
}
}, loadTime);
},