diff --git a/lib/plugins/ticker/ccxt.js b/lib/plugins/ticker/ccxt.js index 09d8dbd7..154d7eb4 100644 --- a/lib/plugins/ticker/ccxt.js +++ b/lib/plugins/ticker/ccxt.js @@ -11,7 +11,11 @@ const tickerObjects = {} function ticker (fiatCode, cryptoCode, tickerName) { const ticker = tickerObjects[tickerName] ? tickerObjects[tickerName] : - tickerObjects[tickerName] = new ccxt[tickerName]({ timeout: 3000 }) + tickerObjects[tickerName] = new ccxt[tickerName]({ + timeout: 3000, + enableRateLimit: true, + rateLimit: 333, + }) if (verifyFiatSupport(fiatCode, tickerName)) { return getCurrencyRates(ticker, fiatCode, cryptoCode)