Offers.sync = () => {
  Offers.checkMarketOpen();
  Offers.syncOffers();
  // As it is expensive to load historical Trades, we load them only for the last week
  // Enough for the Volume chart and the Market History section
  Offers.getHistoricalTradesRange(6).then(Offers.syncTrades);
};