getOffersCount(quoteToken, baseToken).then((count) => {
   Session.set('offersCount', parseInt(count[0], 10) + parseInt(count[1], 10)); // combining both ask and bid offers for a given pair
   Offers.getBestOffer(quoteToken, baseToken).then(getNextOffer);
   Offers.getBestOffer(baseToken, quoteToken).then(getNextOffer);
 });