protected boolean setupChartCarousel() {
   selectEquityTab();
   if (Driver.findIfExists(By.xpath(CHARTS_CAROUSEL_XPATH)) != null) {
     chartsEquityCarousel.setContainerXpath(CHARTS_CAROUSEL_XPATH);
     chartsEquityCarousel.setAnimationTimeout(2);
     return true;
   } else {
     Logger.logError("Cannot initialize Chart table: no chart carousel found.");
     return false;
   }
 }
 protected void setupTopBuySellCarousel() {
   topBuySellCarousel.setContainerXpath(TOP_BUY_SELL_CAROUSEL_XPATH);
   topBuySellCarousel.setAnimationTimeout(2);
 }