ZIM - Stock Info (2024)

' ), submitText: 'Sign Up' } }, scollingTable: function(selector){ $(selector).not(selector+' table').wrap(''); }, meetingFancy: function($selector, trigger){ var meetingCookie = sessionStorage.getItem('requestMeeting'); if (meetingCookie != 'closed') { $selector.removeClass('js--hidden'); } $selector.on('click', '.button--cookie', function () { $selector.addClass('js--hidden'); sessionStorage.setItem("requestMeeting", 'closed'); }); $selector.on('click', trigger, function(e){ e.preventDefault(); $.fancybox.open({ type: 'iframe', src: '/request-meeting-iframe/default.aspx', opts: { margin: [10, 0], slideClass: 'fancybox-slide--form', parentEl: '#litPageDiv > form', baseTpl: '

' + '

' + '

' + '

/

' + '

{{buttons}}

' + '

{{arrows}}

' + '

' + '

' + '

' + '

', btnTpl: { smallBtn: '', }, iframe: { tpl: '', }, } }); }); window.addEventListener('message', function (event) { if (event.data == 'close-fancybox') { $.fancybox.close(); // put focus back on trigger $('.pane--footer2 .module-cta .button--meeting').focus(); } }, false); }, stickyNavBar: function() { var inst = this, $window = $(window), $layout = $('.layout'), $header = $('.pane--header'), $nav = $('.nav--secondary'), $navContainer = $('.pane--breadcrumb'), navContainerPos = function(){ return $navContainer.position().top; }; $window.on('scroll',function(){ if ( $window.scrollTop() > 0 ) { $layout.addClass('js--header-small'); } else { $layout.removeClass('js--header-small'); } if ($window.width() > 1024) { $navContainer.css('min-height', $nav.outerHeight()); if ( $window.scrollTop() + $header.outerHeight() >= navContainerPos() ) { $layout.addClass('js--sticky'); $nav.css('top', $header.outerHeight()); } else { $layout.removeClass('js--sticky'); $nav.removeAttr('style'); } } else { $layout.removeClass('js--sticky'); $nav.removeAttr('style'); $navContainer.removeAttr('style'); } }); $window.on('resize', function(){ if ($window.width() > 1024) { $layout.removeClass('js--sticky'); $navContainer.removeAttr('style').css('min-height', $nav.outerHeight()); $nav.removeAttr('style'); } else { $layout.removeClass('js--sticky'); $nav.removeAttr('style'); $navContainer.removeAttr('style'); } $window.trigger('scroll'); }).resize(); }, navAccessibility: function() { $('nav .selected > a').attr('aria-current','page'); $('.nav--desktop').attr('aria-label','primary'); $('.nav--secondary').attr('aria-label','secondary'); $('.nav--mobile').attr('aria-label','mobile'); $('.nav--secondary .level1, .nav--secondary .level2').attr('role','presentation'); $('.nav--sitemap').attr('aria-label', 'site map'); }, iconFix: function(){ $('.q4icons .module_link').each(function(){ if (!$(this).children('.q4icons_icon').length) { $(this).prepend(''); } }); }, focusTooltip: function( focusElement , tooltipId, tooltipText) { var tooltipElement = ''+ tooltipText +''; $(focusElement).attr('aria-describedby', tooltipId).after(tooltipElement); $(focusElement).focusin(function(){ var $this = $(this), leftPosition = 0, dataPosition = 'right'; if ( $(window).width() > $this[0].offsetLeft + $this[0].offsetWidth + 200 ) { leftPosition = $this[0].offsetLeft + $this[0].offsetWidth; } else { dataPosition = 'left'; leftPosition = $this[0].offsetLeft; } $('#' + tooltipId).attr({ 'aria-hidden': 'false', 'data-position': dataPosition }).css({ top: $this.position().top + $this.outerHeight()/2, left: leftPosition }); }); $(focusElement).focusout(function(){ $('#' + tooltipId).attr('aria-hidden','true').removeAttr('style'); }); }, customLabels: function() { $('.module-subscribe--footer .module-subscribe_email label').text('Enter your email address'); $('.module-subscribe--footer .module-subscribe_email .module_input').removeAttr('placeholder'); const alertsFooter = document.querySelector('.module-subscribe--footer'); const hasConfirmationAlerts = document.querySelector('.module_confirmation-container'); if (!alertsFooter && hasConfirmationAlerts) { hasConfirmationAlerts.style.display = 'inline-block'; } }, init: function() { var app = this; app.cleanUp(); app.submitOnEnter('.module-unsubscribe'); app.submitOnEnter('.module-search'); app.validateSubmit('.module-search'); app.superfish($('.nav--desktop .level2, .nav--secondary .level2, .nav--mobile .level2'), {cssArrows: false}); app.mobileMenuToggle($('.layout'), '.pane--navigation', '.layout_toggle-button', '.module-search_input'); app.cleanQuickLinks($('.module-links')); app.copyright($('.copyright_year')); app.docTracking(); app.fancySignup(); app.resetDate(['.nav a[href*="s4.q4web.com"]:not([href$=".pdf"])']); app.previewToolbar(); app.reveal('.pane--header', '.module-search_toggle','.module-search input[type="text"]', false); app.stickyNavBar(); app.meetingFancy($('.module-cta'),'.button--meeting'); app.sections(); app.navAccessibility(); app.iconFix(); // app.accessibleNavKeyboard( '.nav--main', '2', '.nav--mobile' ); app.focusTooltip('.module-search > .module_container--outer > .module-search_toggle ','search-tip','search'); app.addPageLanguage(); app.customLabels(); }});q4App.init();/** * Insert label before targets * @param {string} target - element which needs a label * @param {string} labelText - text to be shown in the label */function insertLabel(target, labelText) { $(target).each(function (i) { var id = $(this).attr('id'); var label = $(this).attr('aria-label') || labelText; if (!id) { id = Date.now().toString(36) + Math.random().toString(36).substring(2); $(this).attr('id', id); } $('').insertBefore(this); });} // stopping q4login iframe from being read by screen readers $('#q4l-iframe').attr({ tabindex: -1, 'aria-hidden': true }); // trap focus in nav dropdowns function navTrapFocus(element) { var focusableEls = element.find('> li > a[href]:not([disabled]), > li > button:not([disabled])'); var firstFocusableEl = focusableEls[0]; var lastFocusableEl = focusableEls[focusableEls.length - 1]; var KEYCODE_TAB = 9; element.keydown(function(e) { var isTabPressed = (e.key === 'Tab' || e.keyCode === KEYCODE_TAB); if (!isTabPressed) { return; } if ( e.shiftKey ) /* shift + tab */ { if (document.activeElement === firstFocusableEl) { lastFocusableEl.focus(); e.preventDefault(); } } else /* tab */ { if (document.activeElement === lastFocusableEl) { firstFocusableEl.focus(); e.preventDefault(); } } }); } $('.has-innerMenu button').keydown(function(e) { if(e.code === 'Enter' || e.code === 'Space' || e.code === 'NumpadEnter') { navTrapFocus($(this).next()); } }); $(document).ready(function() { $('#g-recaptcha-response').attr('aria-label', 'recaptcha response text field'); }); // Search location $(".nav--secondary .level1").append( $(".module-search.module_search") ) // Header bread let containerNav = document.querySelector(".navbar-versioned");let pageRouter = document.querySelector(".module_page-router");containerNav.appendChild(pageRouter); $('.nav--secondary a:contains("ESG")').attr('aria-label', 'Sustainability'); // Input label color change allInputs = document.querySelectorAll("input");allInputs.forEach(input => { input.onfocus = () => { let inputAttrId = input.getAttribute("id"); let inputLabel = document.querySelector(`[for='${inputAttrId}']`) if(inputAttrId && inputLabel){ inputLabel.classList.add("input-focused") } } input.onblur = () => { let inputLabel = document.querySelector("label.input-focused") if (inputLabel) { inputLabel.classList.remove("input-focused") } }})// Subscribe contact us text let subscribeTable = document.querySelector(".pane--footer .module-subscribe_table-wrap, .pane--right .module-subscribe_table-wrap"); let subscribeTableText = document.createElement("p"); subscribeTableText.classList.add("subscribe-table-text") subscribeTableText.textContent = "By providing your email address below, you are providing consent to ZIM Integrated Shipping Services Ltd to send you the requested Investor Email Alert updates." subscribeTable.appendChild(subscribeTableText) // Search button toggle $(".module-search_toggle").on("click", function() { if ($(".module-search_input").hasClass("js--revealed")) { $(".module-search_input").removeClass("js--revealed"); } else { $(".module-search_input").addClass("js--revealed"); } }); $(".module-search_toggle").hover(function() { $(".tooltip[aria-hidden=true]").attr("aria-hidden", "false"); }, function() { $(".tooltip[aria-hidden=false]").attr("aria-hidden", "true");});

ZIM - Stock Info (2024)

FAQs

Is Zim stock worth buying? ›

Valuation metrics show that ZIM Integrated Shipping Services Ltd. may be undervalued. Its Value Score of A indicates it would be a good pick for value investors.

Will Zim stock pay a dividend in 2024? ›

Last dividend for ZIM Integrated Shipping Service (ZIM) as of July 31, 2024 is 0.23 USD. The forward dividend yield for ZIM as of July 31, 2024 is 2.42%. Dividend history for stock ZIM (ZIM Integrated Shipping Service) including historic stock price, payout ratio history and split, spin-off and special dividends.

What is the future of Zim stock? ›

What are analysts forecasts for ZIM Integrated Shipping Services stock? The 29 analysts offering price forecasts for ZIM Integrated Shipping Services have a median target of 17.44, with a high estimate of 63.00 and a low estimate of 5.00. The median estimate represents a 112.95 difference from the last price of 19.70.

What is the next ex dividend date for Zim? ›

ZIM Dividend History
Ex-DateRecord DateFrequency
Jun 04, 2024Jun 04, 2024Annually
Apr 04, 2023Mar 24, 2023Quarterly
Nov 28, 2022Nov 29, 2022Semi Annually
Aug 26, 2022Aug 29, 2022Semi Annually
4 more rows

Who is the largest shareholder of ZIM? ›

The company's largest shareholder is Court Investments Limited, with ownership of 21%. In comparison, the second and third largest shareholders hold about 3.5% and 2.5% of the stock.

What will ZIM stock price be in 2025? ›

Long-Term ZIM Integrated Shipping Services Ltd. Stock Price Predictions
YearPredictionChange
2025$ 32.1869.48%
2026$ 54.55187.24%
2027$ 92.45386.81%
2028$ 156.68725.05%
2 more rows

What is the true value of ZIM stock? ›

As of 2024-07-30, the Intrinsic Value of ZIM Integrated Shipping Services Ltd (ZIM) is (262.43) USD. This ZIM valuation is based on the model Discounted Cash Flows (Growth Exit 5Y). With the current market price of 18.79 USD, the upside of ZIM Integrated Shipping Services Ltd is -1496.6%.

Has ZIM stock ever split? ›

We currently have no ZIM Stock Split History on this stock.

Is ZIM a profitable company? ›

As you can imagine, fast revenue growth, when maintained, often leads to fast profit growth. Over three years, ZIM Integrated Shipping Services grew revenue at 22% per year. That is faster than most pre-profit companies.

What are the 3 dividend dates? ›

There are three important dates involved with the process of a company paying a dividend: the declaration date, the ex-dividend date, and the record date.

What is the extra dividend date? ›

The ex-dividend date for stocks is usually set one business day before the record date. If you purchase a stock on its ex-dividend date or after, you will not receive the next dividend payment. Instead, the seller gets the dividend. If you purchase before the ex-dividend date, you get the dividend.

What will the ex-dividend price be? ›

On the ex-dividend date, the opening price for the stock will have been reduced by the amount of the dividend but may open at any price because of market forces. The market's perception of the future volatility of the underlying security directly reflected in the options premium.

Top Articles
Apache Log Files: How to View, Configure & Use Them
Timeless Fence System | About
Captiva Dcor State Ga Us
Beaufort Mugshots Last 30 Days
Quilla Early Learning Academy
How to Search All of Craigslist at Once | Digital Trends
Van verlaten haven tot natuurlijk woonparadijs
Cvs Stage And Covington Pike
Texas State Final Grades
Rivals Northwestern
Bank of America Routing Numbers and Wire Transfer Instructions
Fredatmcd.read.inkling.com
Northwest Ga Trader Pets
Holiday Gift Bearer In Egypt
Yumiiangell
Wowhead Enyobon
N3: Ninety-Nine Nights Review - IGN
Craigslist Cars For Sale By Owner Memphis Tn
Lake Compounce Family 4 Pack
Nyc Probation Officer Exam
Max Tl Nails
Purdue Timeforge
Just Breath Chords
Hillside Funeral Home Washington Nc Obituaries
Cat C15 Boost Pressure Sensor Location
2005 Chevrolet Silverado Radio Wiring Diagram
Marie Temara Feet Pics
Brokensilenze Rupaul
Craigslist Of Ocala
Artphotolimited
Tour 2024 | Titleist Ambassadors and PGA Players | Titleist
Craigslist Cars Humboldt
Ralphs Labor Day Hours
R/Sellingsunset
Palm Beach Tan Nashville
763-298-8022
Itslunarliv Leaked Video
Citymd West 104Th Urgent Care - Nyc Photos
Dlnet Delta Com Dlnet
23 Thrift Stores In TEXAS (Quirky, Vintage, & Distinctive)
F92385 (FFT2385) Frontier Flight Tracking and History - FlightAware
Bigtechoro: Latest Business, Technology, Education, News & Updates
Skipthe Games.com
Davine Jay Leaked
Milestat 2023
Where do the candidates stand? Thoughts from City Council at-large hopefuls
Lowest Price Traffic School Answers
Cornerstone Fence Edmond
Umcu Cd Rates
Oppenheimer Showtimes Near Cinemark Denton
Latest Posts
Article information

Author: Trent Wehner

Last Updated:

Views: 6395

Rating: 4.6 / 5 (76 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Trent Wehner

Birthday: 1993-03-14

Address: 872 Kevin Squares, New Codyville, AK 01785-0416

Phone: +18698800304764

Job: Senior Farming Developer

Hobby: Paintball, Calligraphy, Hunting, Flying disc, Lapidary, Rafting, Inline skating

Introduction: My name is Trent Wehner, I am a talented, brainy, zealous, light, funny, gleaming, attractive person who loves writing and wants to share my knowledge and understanding with you.