'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

HSBC

HSBC Holdings plc is a British multinational banking and financial services company headquartered in London, United Kingdom. It is the world's fifth largest bank by total assets, with total assets of US$2.67 trillion. It was established in its present form in London in 1991 by the Hongkong and Shanghai Banking Corporation Limited to act as a new group holding company. The origins of the bank lie mainly in Hong Kong and to a lesser extent in Shanghai, where branches were first opened in 1865. The HSBC name is derived from the initials of the Hongkong and Shanghai Banking Corporation. The company was first formally incorporated in 1866. The company continues to see both the United Kingdom and Hong Kong as its "home markets".

HSBC has around 6,600 offices in 80 countries and territories across Africa, Asia, Oceania, Europe, North America and South America, and around 60 million customers. As of 2014, it was the world's sixth-largest public company, according to a composite measure by Forbes magazine.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/HSBC

HSBC Bank Canada

HSBC Bank Canada, formerly the Hongkong Bank of Canada (French: Banque HSBC Canada), is a bank in Canada that is part of British banking giant HSBC - one of the largest banking groups in the world. HSBC Canada is the seventh largest bank in Canada, with offices in every province except Prince Edward Island, and is the largest foreign-owned bank in the country. Corporate headquarters are in the financial district of Vancouver, British Columbia. HSBC Bank Canada's Institution Number (or bank number) is 016.

History

In 1979, The Hongkong and Shanghai Banking Corporation bought a Vancouver-based acceptance company that financed machinery and equipment for small companies operating in British Columbia. In 1981, The Hongkong and Shanghai Banking Corporation incorporated Hongkong Bank of Canada (HBC), in Vancouver as a chartered bank effective July 1, 1981, under the Bank Act of Canada using the acceptance company as a base for the new bank. HBC had a few retail branches primarily focused on Asian-Canadians whose primary business centred on commercial enterprises. HBC opened branches in major cities in western Canada and in Toronto and Montreal but growth was slow. HBC sought to grow by acquisition, but the first three attempts to buy an existing institution were unsuccessful. HBC acquired the assets of Bank of British Columbia on November 27, 1986, which had essentially failed. This acquisition gave HBC an additional $2.6 billion in assets and 41 branches in British Columbia and Alberta propelling it overnight from the 20th largest to 9th largest bank in Canada.

Podcasts:

  • Condensed Final Round | 2025 HSBC Women's World Championship

    Welcome to the official YouTube channel of the LPGA Tour. Here you can find everything you need to stay up to date with all of the action featuring some of the world’s best golfers! Check in for highlights from every tournament plus full round replays, top shots and amazing moments. Check out https://www.lpga.com for complete coverage along with all the latest news, scoring, and stats! How to watch the LPGA Tour: https://www.lpga.com/international-tv-distribution LPGA Tour Social: Instagram: https://www.instagram.com/lpga_tour Facebook: https://www.facebook.com/LPGA Twitter: https://twitter.com/LPGA TikTok: https://www.tiktok.com/@lpga_tour Twitch: https://www.twitch.tv/lpga_tour

    published: 02 Mar 2025
  • HSBC – Life is Rarely a Straight Line

    No one knows exactly what the future holds, but at HSBC, we’ve been around nearly every conceivable corner, in every corner of the globe. And if we haven’t, we can connect you with someone who has. That’s the true power of our international network – opening up a world of opportunity.

    published: 31 May 2024
  • Story of HSBC | Largest bank of Europe

    Instagram: https://www.instagram.com/niteshyadav585 Twitter: https://twitter.com/im_niteshy LinkedIn: https://www.linkedin.com/in/niteshyadav585/ ------------------------------------------------------------------ Story of HSBC | Largest bank of Europe If you want to start business than it is best video for you and will give life learnings. HSBC Holdings plc is a British multinational universal bank and financial services holding company. It is the largest bank in Europe by total assets ahead of BNP Paribas Topics covered: History of HSBC bank which is the best hsbc vs barclays? what is on demand video interview hsbc? , is hsbc ftse 100 etf good? how to start a startup? what is startup? how to get investment for startup? #hsbc #hsbcnews #hsbcindia #finance #banking #news #today #hsbcg...

    published: 20 Dec 2022
  • HSBC Job Cuts: Layoffs at Investment Bank to Start in Asia

    HSBC is kicking off a fresh round of job cuts at its investment bank as new Chief Executive Officer Georges Elhedery continues his overhaul of Europe’s biggest lender, according to people familiar with the matter. The latest phase of cuts will start in Asia, but will ultimately affect employees globally, said the people. Bloomberg's Manuel Baigorri reports. -------- More on Bloomberg Television and Markets Like this video? Subscribe and turn on notifications so you don't miss any videos from Bloomberg Markets & Finance: https://tinyurl.com/ysu5b8a9 Visit http://www.bloomberg.com for business news & analysis, up-to-the-minute market data, features, profiles and more. Connect with Bloomberg Television on: X: https://twitter.com/BloombergTV Facebook: https://www.facebook.com/Bloo...

    published: 14 Feb 2025
  • 滙豐香港 盛演世界160年

    我們的故事,由160年前開始。由皇后大道中,到世界每一個角落。由以前到現在,一直向前, 與香港並肩成長。一起從體壇到藝術,文化,在世界舞台發光發亮,上演更多精彩故事。 滙豐香港 盛演世界160年 我們的故事,只是剛剛開始。 了解更多:https://grp.hsbc/6004LZ79w #滙豐 #滙豐香港160週年 #滙豐香港盛演世界160年 #滙見新可能 Our story began 160 years ago on Queen’s Road Central. From there, we’ve grown alongside Hong Kong, reaching every corner of the world. Through sport, art, and culture, we’re writing our story together on the global stage. HSBC Hong Kong Celebrating 160 years of great stories Learn more: https://grp.hsbc/6009LZ7ix #HSBC #HSBC160thAnniversary #HSBC160yearsofgreatstories #Openingupaworldofopportunity

    published: 03 Mar 2025
  • 寰宇101-EP01|HSBC匯控架構大重組 為何一直眷戀走下坡的中國市場? (劉啟源)

    匯豐的國際豪賭:依賴亞洲市場,能否突圍中西夾擊? 匯豐銀行公佈新任女性財務總監郭珮瑛的同時,宣布大規模業務重組,聚焦亞洲市場,並合併多項業務以簡化架構。然而,匯豐的策略選擇正面臨嚴峻挑戰:地緣政治緊張、中美貿易戰、全球經濟動盪等因素令其步履維艱。從歷史上深耕香港、拓展至全球,到近年依賴中國市場,匯豐的「環球金融.地方智慧」模式是否仍能奏效?而政治敏感事件如孟晚舟案與凍結賬戶問題,更為這家國際銀行蒙上爭議陰影。匯豐,究竟是在識時務還是自甘墮落? 👉 成為這個頻道的會員並獲得獎勵: https://www.youtube.com/channel/UCXf8jlTSP9kp6g4ROCfgvbQ/join Simon 沈旭暉 堅離地 Social Media ▶ ⏺ Patreon: https://patreon.com/simonshen ⏹ Website: https://thesimonglocal.com/ 🔼 Facebook: https://facebook.com/shensimon ℹ️ Instagram: https://instagram.com/simon.diplomacy ➡️ Twitter: http://twitter.com/simon_diplomacy 其他合作及查詢可以電郵至 simonpatreon@gmail.com (Alan) Jacky 馮智政 Social Media ▶ ℹ️ Instagram: https://www.instagram.com/ccfung.jacky/ ⏹ Website of NGO 港美教育交流協會: https://www.hkameea.org/ 馮智政、馮敬恩及柴宇瀚均為本頻道客席主持,本頻道的主持及客席均由主持自訂題目、自主研究及編採自主的權利,各人的意見並不代表本...

    published: 22 Dec 2024
  • HSBC in two minutes

    Short profile of HSBC, Europe's largest bank by market cap. The video covers HSBC's business model, profitability and impact on climate change.

    published: 19 Feb 2022
  • Banksters: HSBC, the Untouchable Titan of Global Finance

    From the filmmaker behind 'Goldman Sachs: The Bank that Rules the World' comes a compelling new exposé delving into corruption within one of the globe's premier financial institutions – HSBC. If HSBC were a sovereign entity, it would rank as the fifth-largest economic power worldwide. Originating during the heyday of the Opium trade to facilitate the British Empire's access to the Chinese market, HSBC has forged an unparalleled network for facilitating the movement of illicit funds across the globe. From engaging in tax evasion to laundering money for criminal syndicates and manipulating currency, this bank has been involved in a spectrum of illicit activities, embodying the epitome of misconduct for a financial institution. In 2012, HSBC faced the imminent threat of losing its operating...

    published: 21 Nov 2023
  • HSBC women’s world championship 2025

    published: 02 Mar 2025
  • HSBC: The Money Laundering Scandal | Criminal Banks | Finance | Documentary

    HSBC: The Money Laundering Scandal - If HSBC were a country, it would be the fifth world economic power. Founded during the golden age of the Opium trade to enable the British Empire to access the Chinese market, it has created a unique network to move dirty money around the world. HSBC: The Money Laundering Scandal (2017) Director: Jerome Fritel, Marc Roche Writers: Jérôme Fritel, Marc Roche Stars: Douglas Arner, Jack Blum, Lanny Breuer Genre: Documentary Country: France Language: English Also Known As: Banksters Synopsis: From the director of ‘Goldman Sachs: The Bank that Rules the World’ comes a major new investigation into corruption at one of the world’s top financial institutions – HSBC. If HSBC were a country, it would be the fifth world economic power. Founded during the golden ...

    published: 07 Dec 2023
Condensed Final Round | 2025 HSBC Women's World Championship
20:12

Condensed Final Round | 2025 HSBC Women's World Championship

  • Order:
  • Duration: 20:12
  • Uploaded Date: 02 Mar 2025
  • views: 184001
Welcome to the official YouTube channel of the LPGA Tour. Here you can find everything you need to stay up to date with all of the action featuring some of the world’s best golfers! Check in for highlights from every tournament plus full round replays, top shots and amazing moments. Check out https://www.lpga.com for complete coverage along with all the latest news, scoring, and stats! How to watch the LPGA Tour: https://www.lpga.com/international-tv-distribution LPGA Tour Social: Instagram: https://www.instagram.com/lpga_tour Facebook: https://www.facebook.com/LPGA Twitter: https://twitter.com/LPGA TikTok: https://www.tiktok.com/@lpga_tour Twitch: https://www.twitch.tv/lpga_tour
https://wn.com/Condensed_Final_Round_|_2025_Hsbc_Women's_World_Championship
HSBC – Life is Rarely a Straight Line
0:46

HSBC – Life is Rarely a Straight Line

  • Order:
  • Duration: 0:46
  • Uploaded Date: 31 May 2024
  • views: 19678
No one knows exactly what the future holds, but at HSBC, we’ve been around nearly every conceivable corner, in every corner of the globe. And if we haven’t, we can connect you with someone who has. That’s the true power of our international network – opening up a world of opportunity.
https://wn.com/Hsbc_–_Life_Is_Rarely_A_Straight_Line
Story of HSBC | Largest bank of Europe
6:03

Story of HSBC | Largest bank of Europe

  • Order:
  • Duration: 6:03
  • Uploaded Date: 20 Dec 2022
  • views: 28917
Instagram: https://www.instagram.com/niteshyadav585 Twitter: https://twitter.com/im_niteshy LinkedIn: https://www.linkedin.com/in/niteshyadav585/ ------------------------------------------------------------------ Story of HSBC | Largest bank of Europe If you want to start business than it is best video for you and will give life learnings. HSBC Holdings plc is a British multinational universal bank and financial services holding company. It is the largest bank in Europe by total assets ahead of BNP Paribas Topics covered: History of HSBC bank which is the best hsbc vs barclays? what is on demand video interview hsbc? , is hsbc ftse 100 etf good? how to start a startup? what is startup? how to get investment for startup? #hsbc #hsbcnews #hsbcindia #finance #banking #news #today #hsbcglobal #topnews #banks #business #economy #investment #money, #stockmarket #market #stocks #markets #globalnews #englishstory #storytime #story #stories #documentary #startupcompany #startups #startupideas #banking
https://wn.com/Story_Of_Hsbc_|_Largest_Bank_Of_Europe
HSBC Job Cuts: Layoffs at Investment Bank to Start in Asia
3:17

HSBC Job Cuts: Layoffs at Investment Bank to Start in Asia

  • Order:
  • Duration: 3:17
  • Uploaded Date: 14 Feb 2025
  • views: 59228
HSBC is kicking off a fresh round of job cuts at its investment bank as new Chief Executive Officer Georges Elhedery continues his overhaul of Europe’s biggest lender, according to people familiar with the matter. The latest phase of cuts will start in Asia, but will ultimately affect employees globally, said the people. Bloomberg's Manuel Baigorri reports. -------- More on Bloomberg Television and Markets Like this video? Subscribe and turn on notifications so you don't miss any videos from Bloomberg Markets & Finance: https://tinyurl.com/ysu5b8a9 Visit http://www.bloomberg.com for business news & analysis, up-to-the-minute market data, features, profiles and more. Connect with Bloomberg Television on: X: https://twitter.com/BloombergTV Facebook: https://www.facebook.com/BloombergTelevision Instagram: https://www.instagram.com/bloombergtv/ Connect with Bloomberg Business on: X: https://twitter.com/business Facebook: https://www.facebook.com/bloombergbusiness Instagram: https://www.instagram.com/bloombergbusiness/ TikTok: https://www.tiktok.com/@bloombergbusiness?lang=en Reddit: https://www.reddit.com/r/bloomberg/ LinkedIn: https://www.linkedin.com/company/bloomberg-news/ More from Bloomberg: Bloomberg Radio: https://twitter.com/BloombergRadio Bloomberg Surveillance: https://twitter.com/bsurveillance Bloomberg Politics: https://twitter.com/bpolitics Bloomberg Originals: https://twitter.com/bbgoriginals Watch more on YouTube: Bloomberg Technology: https://www.youtube.com/@BloombergTechnology Bloomberg Originals: https://www.youtube.com/@business Bloomberg Quicktake: https://www.youtube.com/@BloombergQuicktake Bloomberg Espanol: https://www.youtube.com/@bloomberg_espanol Bloomberg Podcasts: https://www.youtube.com/@BloombergPodcasts
https://wn.com/Hsbc_Job_Cuts_Layoffs_At_Investment_Bank_To_Start_In_Asia
滙豐香港 盛演世界160年
1:30

滙豐香港 盛演世界160年

  • Order:
  • Duration: 1:30
  • Uploaded Date: 03 Mar 2025
  • views: 325132
我們的故事,由160年前開始。由皇后大道中,到世界每一個角落。由以前到現在,一直向前, 與香港並肩成長。一起從體壇到藝術,文化,在世界舞台發光發亮,上演更多精彩故事。 滙豐香港 盛演世界160年 我們的故事,只是剛剛開始。 了解更多:https://grp.hsbc/6004LZ79w #滙豐 #滙豐香港160週年 #滙豐香港盛演世界160年 #滙見新可能 Our story began 160 years ago on Queen’s Road Central. From there, we’ve grown alongside Hong Kong, reaching every corner of the world. Through sport, art, and culture, we’re writing our story together on the global stage. HSBC Hong Kong Celebrating 160 years of great stories Learn more: https://grp.hsbc/6009LZ7ix #HSBC #HSBC160thAnniversary #HSBC160yearsofgreatstories #Openingupaworldofopportunity
https://wn.com/滙豐香港_盛演世界160年
寰宇101-EP01|HSBC匯控架構大重組 為何一直眷戀走下坡的中國市場? (劉啟源)
14:35

寰宇101-EP01|HSBC匯控架構大重組 為何一直眷戀走下坡的中國市場? (劉啟源)

  • Order:
  • Duration: 14:35
  • Uploaded Date: 22 Dec 2024
  • views: 53356
匯豐的國際豪賭:依賴亞洲市場,能否突圍中西夾擊? 匯豐銀行公佈新任女性財務總監郭珮瑛的同時,宣布大規模業務重組,聚焦亞洲市場,並合併多項業務以簡化架構。然而,匯豐的策略選擇正面臨嚴峻挑戰:地緣政治緊張、中美貿易戰、全球經濟動盪等因素令其步履維艱。從歷史上深耕香港、拓展至全球,到近年依賴中國市場,匯豐的「環球金融.地方智慧」模式是否仍能奏效?而政治敏感事件如孟晚舟案與凍結賬戶問題,更為這家國際銀行蒙上爭議陰影。匯豐,究竟是在識時務還是自甘墮落? 👉 成為這個頻道的會員並獲得獎勵: https://www.youtube.com/channel/UCXf8jlTSP9kp6g4ROCfgvbQ/join Simon 沈旭暉 堅離地 Social Media ▶ ⏺ Patreon: https://patreon.com/simonshen ⏹ Website: https://thesimonglocal.com/ 🔼 Facebook: https://facebook.com/shensimon ℹ️ Instagram: https://instagram.com/simon.diplomacy ➡️ Twitter: http://twitter.com/simon_diplomacy 其他合作及查詢可以電郵至 simonpatreon@gmail.com (Alan) Jacky 馮智政 Social Media ▶ ℹ️ Instagram: https://www.instagram.com/ccfung.jacky/ ⏹ Website of NGO 港美教育交流協會: https://www.hkameea.org/ 馮智政、馮敬恩及柴宇瀚均為本頻道客席主持,本頻道的主持及客席均由主持自訂題目、自主研究及編採自主的權利,各人的意見並不代表本台立場。 所有客席主持及嘉賓提供的內容,已授權本頻道作內容的管理、編輯及發佈的決策權。 影片及圖片素材來源:Envato、Wikimedia Commons、Artlist
https://wn.com/寰宇101_Ep01|Hsbc匯控架構大重組_為何一直眷戀走下坡的中國市場?_(劉啟源)
HSBC in two minutes
1:58

HSBC in two minutes

  • Order:
  • Duration: 1:58
  • Uploaded Date: 19 Feb 2022
  • views: 17970
Short profile of HSBC, Europe's largest bank by market cap. The video covers HSBC's business model, profitability and impact on climate change.
https://wn.com/Hsbc_In_Two_Minutes
Banksters: HSBC, the Untouchable Titan of Global Finance
57:36

Banksters: HSBC, the Untouchable Titan of Global Finance

  • Order:
  • Duration: 57:36
  • Uploaded Date: 21 Nov 2023
  • views: 674261
From the filmmaker behind 'Goldman Sachs: The Bank that Rules the World' comes a compelling new exposé delving into corruption within one of the globe's premier financial institutions – HSBC. If HSBC were a sovereign entity, it would rank as the fifth-largest economic power worldwide. Originating during the heyday of the Opium trade to facilitate the British Empire's access to the Chinese market, HSBC has forged an unparalleled network for facilitating the movement of illicit funds across the globe. From engaging in tax evasion to laundering money for criminal syndicates and manipulating currency, this bank has been involved in a spectrum of illicit activities, embodying the epitome of misconduct for a financial institution. In 2012, HSBC faced the imminent threat of losing its operating license in the United States due to its involvement in laundering money for Mexican and Colombian drug cartels. Criminal charges were brought forth, and HSBC's top executives were summoned before a Senate committee. However, a pivotal turn of events occurred when George Osborne, the then Chancellor of the Exchequer in the UK, reached out to his American counterpart and the Chairman of the Federal Reserve, urging leniency. Osborne argued that severe consequences for HSBC could adversely impact global financial and economic stability. His persuasive letter succeeded, leading to a 2 billion euro fine for HSBC – an amount equivalent to a single month's profits. As the epicenter of international finance shifts towards Asia, HSBC finds itself in a strategic position. Functioning as the most Chinese of Western banks and the most European of Chinese banks, HSBC enjoys protection from London and endorsement from Beijing. The question looms large: who would dare challenge it? Directors: Jerome Fritel, Marc Roche
https://wn.com/Banksters_Hsbc,_The_Untouchable_Titan_Of_Global_Finance
HSBC women’s world championship 2025
0:11

HSBC women’s world championship 2025

  • Order:
  • Duration: 0:11
  • Uploaded Date: 02 Mar 2025
  • views: 609
https://wn.com/Hsbc_Women’S_World_Championship_2025
HSBC: The Money Laundering Scandal | Criminal Banks | Finance | Documentary
1:26:40

HSBC: The Money Laundering Scandal | Criminal Banks | Finance | Documentary

  • Order:
  • Duration: 1:26:40
  • Uploaded Date: 07 Dec 2023
  • views: 757285
HSBC: The Money Laundering Scandal - If HSBC were a country, it would be the fifth world economic power. Founded during the golden age of the Opium trade to enable the British Empire to access the Chinese market, it has created a unique network to move dirty money around the world. HSBC: The Money Laundering Scandal (2017) Director: Jerome Fritel, Marc Roche Writers: Jérôme Fritel, Marc Roche Stars: Douglas Arner, Jack Blum, Lanny Breuer Genre: Documentary Country: France Language: English Also Known As: Banksters Synopsis: From the director of ‘Goldman Sachs: The Bank that Rules the World’ comes a major new investigation into corruption at one of the world’s top financial institutions – HSBC. If HSBC were a country, it would be the fifth world economic power. Founded during the golden age of the Opium trade to enable the British Empire to access the Chinese market, it has created a unique network to move dirty money around the world. From tax evasion to money laundering for the mafia and manipulation of currency, “this bank had done everything bad that a bank can possibly do.” In 2012, HSBC nearly lost its license to operate in the US for laundering the money of the Mexican and Columbian drug cartels. Criminal charges were filed and HSBC’s executives hauled before a Senate committee. But George Osborne, UK’s then Chancellor of the Exchequer, wrote to his counterpart in America and to the Chairman of the Federal Reserve to plead for leniency. He claimed that if HSBC received a harsh punishment, it would have serious repercussions on the world’s financial and economic stability. The letter worked and HSBC was fined 2 billion euros. The equivalent of one month’s profits. As the center of international finance moves to Asia, HSBC is in prime position. It is the most Chinese of Western banks and the most European of Chinese banks. Protected by London, blessed by Beijing, who would dare attack it? Reviews: "Quite French in some parts, but universal in it's worry. A history of one of the main corrupt entities in a global corrupt financial system between the British and the Chinese. Do you want to get upset about any fees and penalties your bank issues you for being a week late in payment (when you explicitly have the funds in another account of yours to counter that fee?) Watch this!! It's the basic story began years and years ago to take power and financial freedom from the little guy, and protect the big guy. Above the law, no repercussions Governments protecting banks. Why is the judicial system protecting this ?" - written by "heath-67" on IMDb.com Also Known As (AKA): (original title) Les gangsters de la finance France Les gangsters de la finance Germany Die Skandalbank SUPPORT US! ✘ Membership - https://bit.ly/3q5XPBh MORE DOCS! ► Gold: https://bit.ly/2IRZ0OA ► World Economy: https://bit.ly/36QlhEM ► All Playlists: https://bit.ly/3lOiCll #finance #documentaries #economy COPYRIGHT: All of the films published by us are legally licensed. We have acquired the rights (at least for specific territories) from the rightholders by contract. If you have questions please send an email to: info[at]moconomy.tv, Moconomy GmbH, www.moconomy.tv.
https://wn.com/Hsbc_The_Money_Laundering_Scandal_|_Criminal_Banks_|_Finance_|_Documentary
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Condensed Final Round | 2025 HSBC Women's World Championship
    20:12
    Condensed Final Round | 2025 HSBC Women's World Championshipremove from playlist
  • HSBC – Life is Rarely a Straight Line
    0:46
    HSBC – Life is Rarely a Straight Lineremove from playlist
  • Story of HSBC | Largest bank of Europe
    6:03
    Story of HSBC | Largest bank of Europeremove from playlist
  • HSBC Job Cuts: Layoffs at Investment Bank to Start in Asia
    3:17
    HSBC Job Cuts: Layoffs at Investment Bank to Start in Asiaremove from playlist
  • 滙豐香港 盛演世界160年
    1:30
    滙豐香港 盛演世界160年remove from playlist
  • 寰宇101-EP01|HSBC匯控架構大重組 為何一直眷戀走下坡的中國市場? (劉啟源)
    14:35
    寰宇101-EP01|HSBC匯控架構大重組 為何一直眷戀走下坡的中國市場? (劉啟源)remove from playlist
  • HSBC in two minutes
    1:58
    HSBC in two minutesremove from playlist
  • Banksters: HSBC, the Untouchable Titan of Global Finance
    57:36
    Banksters: HSBC, the Untouchable Titan of Global Financeremove from playlist
  • HSBC: The Money Laundering Scandal | Criminal Banks | Finance | Documentary
    1:26:40
    HSBC: The Money Laundering Scandal | Criminal Banks | Finance | Documentaryremove from playlist
PLAYLIST TIME:

Condensed Final Round | 2025 HSBC Women's World Championship

Welcome to the official YouTube channel of the LPGA Tour. Here you can find everything you need to stay up to date with all of the action featuring some of the world’s best golfers! Check in for highlights from every tournament plus full round replays, top shots and amazing moments. Check out https://www.lpga.com for complete coverage along with all the latest news, scoring, and stats! How to watch the LPGA Tour: https://www.lpga.com/international-tv-distribution LPGA Tour Social: Instagram: https://www.instagram.com/lpga_tour Facebook: https://www.facebook.com/LPGA Twitter: https://twitter.com/LPGA TikTok: https://www.tiktok.com/@lpga_tour Twitch: https://www.twitch.tv/lpga_tour
20:12
Condensed Final Round | 2025 HSBC Women's World Championship
Welcome to the official YouTube channel of the LPGA Tour. Here you can find everything you...
published: 02 Mar 2025
Play in Full Screen
0:46
HSBC – Life is Rarely a Straight Line
No one knows exactly what the future holds, but at HSBC, we’ve been around nearly every co...
published: 31 May 2024
Play in Full Screen
6:03
Story of HSBC | Largest bank of Europe
Instagram: https://www.instagram.com/niteshyadav585 Twitter: https://twitter.com/im_nitesh...
published: 20 Dec 2022
Play in Full Screen
3:17
HSBC Job Cuts: Layoffs at Investment Bank to Start in Asia
HSBC is kicking off a fresh round of job cuts at its investment bank as new Chief Executiv...
published: 14 Feb 2025
Play in Full Screen
1:30
滙豐香港 盛演世界160年
我們的故事,由160年前開始。由皇后大道中,到世界每一個角落。由以前到現在,一直向前, 與香港並肩成長。一起從體壇到藝術,文化,在世界舞台發光發亮,上演更多精彩故事。 滙豐香港 ...
published: 03 Mar 2025
Play in Full Screen
14:35
寰宇101-EP01|HSBC匯控架構大重組 為何一直眷戀走下坡的中國市場? (劉啟源)
匯豐的國際豪賭:依賴亞洲市場,能否突圍中西夾擊? 匯豐銀行公佈新任女性財務總監郭珮瑛的同時,宣布大規模業務重組,聚焦亞洲市場,並合併多項業務以簡化架構。然而,匯豐的策略選擇正面臨...
published: 22 Dec 2024
Play in Full Screen
1:58
HSBC in two minutes
Short profile of HSBC, Europe's largest bank by market cap. The video covers HSBC's busin...
published: 19 Feb 2022
Play in Full Screen
57:36
Banksters: HSBC, the Untouchable Titan of Global Finance
From the filmmaker behind 'Goldman Sachs: The Bank that Rules the World' comes a compellin...
published: 21 Nov 2023
Play in Full Screen
0:11
HSBC women’s world championship 2025
published: 02 Mar 2025
Play in Full Screen
1:26:40
HSBC: The Money Laundering Scandal | Criminal Banks | Finance | Documentary
HSBC: The Money Laundering Scandal - If HSBC were a country, it would be the fifth world e...
published: 07 Dec 2023
Play in Full Screen

HSBC

HSBC Holdings plc is a British multinational banking and financial services company headquartered in London, United Kingdom. It is the world's fifth largest bank by total assets, with total assets of US$2.67 trillion. It was established in its present form in London in 1991 by the Hongkong and Shanghai Banking Corporation Limited to act as a new group holding company. The origins of the bank lie mainly in Hong Kong and to a lesser extent in Shanghai, where branches were first opened in 1865. The HSBC name is derived from the initials of the Hongkong and Shanghai Banking Corporation. The company was first formally incorporated in 1866. The company continues to see both the United Kingdom and Hong Kong as its "home markets".

HSBC has around 6,600 offices in 80 countries and territories across Africa, Asia, Oceania, Europe, North America and South America, and around 60 million customers. As of 2014, it was the world's sixth-largest public company, according to a composite measure by Forbes magazine.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/HSBC
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: hsbc

Edit

HSBC Holdings plc - Transaction in own shares (HSBC Holdings plc)

Public Technologies 02 Apr 2025
HSBC Holdings plc ("HSBC" or the "Company") announces that it has purchased for cancellation the following number of its ordinary shares of US$0.50 from Merrill Lynch International ...
Edit

Manufacturing Sector Growth Surged To 8-Month High In March: HSBC

MENA FN 02 Apr 2025
(MENAFN - IANS) New Delhi, April 2 (IANS) Manufacturing sector growth in India surged to an eight-month high in March as a faster upturn in total sales underpinned a sharper increase in output, ... .
Edit

Chinese VP meets HSBC Group chairman

Xinhua 02 Apr 2025
BEIJING, April 2 (Xinhua) -- Chinese Vice President Han Zheng met with HSBC Group Chairman Mark Tucker in Beijing on Wednesday ... Chinese VP meets HSBC Group chairman.
Edit

CHINA-BEIJING-HAN ZHENG-HSBC-CHAIRMAN-MEETING(CN)

Beijing News 02 Apr 2025
(250402) -- BEIJING, April 2, 2025 ...
Edit

Report of Foreign Private Issuer (Form 6-K) (HSBC Holdings plc)

Public Technologies 02 Apr 2025
HSBC Holdings plc ("HSBC" or the "Company") announces that it has purchased for cancellation the following number of its ordinary shares of US$0.50 from Merrill Lynch International ...
Edit

Free Writing Prospectus (Form FWP) (HSBC USA Inc)

Public Technologies 02 Apr 2025
) ... Registration No ... HSBC USA Inc ... Issuer HSBC USA Inc. ("HSBC") ... Calculation Agent >HSBC ... Risk Relating To The Credit Risk Of HSBC · The Securities Are Subject To The Credit Risk Of HSBC USA Inc ... · If HSBC Securities (USA) Inc ... 2 ... HSBC USA Inc.
Edit

Primary Offering Prospectus (Form 424B2) (HSBC USA Inc)

Public Technologies 02 Apr 2025
HSBC USA Inc ... All payments on the Notes are subject to the credit risk of HSBC USA Inc ... We have appointed HSBC Securities (USA) Inc., an affiliate of ours, as the agent for the sale of the Notes. HSBC Securities (USA) Inc ... HSBC USA Inc ... HSBC USA Inc.
Edit

HSBC unveils premier elite wealth center in HK spanning over 10,000 sq ft

Hong Kong Standard 01 Apr 2025
The new center, located in HSBC's ... In the second half of 2025, HSBC will open another premier elite center in Hong Kong.&nbsp;.
Edit

Chinese stocks get ‘shot in the arm’ from stimulus moves, HSBC survey says

South China Morning Post 01 Apr 2025
The latest effort by Chinese officials to stimulate the economy ‘seems to resonate with emerging-market investors’, analysts say ... .
Edit

RBA is saying it 'has options' despite global risk: HSBC

CNBC 01 Apr 2025
Paul Bloxham, HSBC's chief economist for Australia and New Zealand and global commodities, says the point that stood out in the statement was the central bank's focus on global risks ... .
×