'+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; })); }); -->

Capital flight

Capital flight, in economics, occurs when assets or money rapidly flow out of a country, due to an event of economic consequence. Such events could be an increase in taxes on capital or capital holders or the government of the country defaulting on its debt that disturbs investors and causes them to lower their valuation of the assets in that country, or otherwise to lose confidence in its economic strength.

This leads to a disappearance of wealth, and is usually accompanied by a sharp drop in the exchange rate of the affected country - depreciation in a variable exchange rate regime, or a forced devaluation in a fixed exchange rate regime.

This fall is particularly damaging when the capital belongs to the people of the affected country, because not only are the citizens now burdened by the loss in the economy and devaluation of their currency, but probably also, their assets have lost much of their Real versus nominal value (economics)|nominal value. This leads to dramatic decreases in the purchasing power of the country's assets and makes it increasingly expensive to import goods and acquire and form of foreign facilities i.e. medical facilities.

Podcasts:

  • Capital Flight | Barriers to Economic Development

    Capital flight can be an important barrier to economic growth and development. In this video we look at some of the causes and consequences of capital flight. Capital flight is the uncertain and rapid movement of large sums of money out of a country. The UK’s Overseas Development Institute (ODI) defines capital flight as "the outflow of resident capital which is motivated by economic and political uncertainty.” #tutor2ueconomics #economicsexplained #capitalflight #macroeconomics #currencies #ibeconomics #edexceleconomics #aqaeconomics #ocreconomics #economicdevelopment

    published: 01 Jan 2023
  • Ask Prof Wolff: How Anti-Capitalists Defeat "Capital Flight"

    A patron of Economic Update asks: "How can a progressive anti-capitalist movement survive 'capital flight'?" This is Professor Richard Wolff's video response. Submit your own question to be considered for a video response by Prof. Wolff on Patreon: https://www.patreon.com/economicupdate/community. Ask Prof Wolff is a @democracyatwrk production. We are committed to providing these videos to you free of ads. Please consider supporting us on Patreon.com/economicupdate. Become a part of the growing Patreon community and gain access to exclusive patron-only content, along with the ability to ask Prof. Wolff questions like this one! Your support also helps keep this content free to the public. Spreading Prof. Wolff's message is more important than ever. Help us continue to make this possible...

    published: 28 Apr 2021
  • Capital Flight Definition

    Visit our full dictionary of terms at OfficeDictionary.com

    published: 24 Jul 2022
  • Everything you need to know about China's capital flight

    published: 10 Mar 2016
  • China’s capital flight explained | FT World

    ► Subscribe to the Financial Times on YouTube: http://bit.ly/FTimeSubs James Kynge, FT emerging markets editor, explains in 90 seconds how record capital outflows from China and tightening controls by Beijing are affecting companies and individuals. For more video content from the Financial Times, visit http://www.FT.com/video Twitter https://twitter.com/ftvideo Facebook https://www.facebook.com/financialtimes

    published: 11 Sep 2015
  • Capital Flight: Chinese Funds Leaving the Western World

    published: 24 Jul 2023
  • Africa lost $836bn from 'illicit capital flight' from 2000-2015 | Inside Story

    A new report from the United Nations says the continent would be debt free if money hadn't left illegally. Much of the loss is through corruption, tax evasion and mis-invoicing of exports such as gold. The UN says the problem is robbing the continent and its people of their future. But what can be done to stop these practices? Presenter: Hashem Ahelbarra Guests: Junior Davis - lead author of the report, from the United Nations Conference on Trade and Development. Sanusha Naidu - senior research fellow at the Institute for Global Dialogue. Edwin Ikhuoria - Africa Executive Director at ONE. - Subscribe to our channel: http://aje.io/AJSubscribe - Follow us on Twitter: https://twitter.com/AJEnglish - Find us on Facebook: https://www.facebook.com/aljazeera - Check our website: https://ww...

    published: 30 Sep 2020
  • Real Interest Rates and Capital Flows- Macro Topic 6.6

    Congratulations on completing your macro class. Group hug! But before you leave, make sure that you understand how the key graphs relate to each other. In this video I explain three things: 1.how the business cycle, production possibilities curve, aggregate demand/supply and Phillips curve are related 2. How monetary policy works using graphs 3. How the loanable funds market graph is related to the foreign exchange market. (This last one is probably something that you haven't seen). Thank you so much for watching my videos. Please subscribe!

    published: 27 Nov 2018
  • The Problem of Capital Flight

    The problem of capital flight 15h30-17h00 10-5-15

    published: 30 Apr 2015
  • Capital Flight From Africa: How the Poor Finance the Rich

    A new World Bank report comparing economic growth among different regions in the world ignores key factors in addressing wealth and inequality in Africa--particularly the wealth that is stashed offshore in developed countries, says economist and author Leonce Ndikumana Visit http://therealnews.com for more stories and help support our work by donating at http://therealnews.com/donate.

    published: 01 Mar 2018
Capital Flight | Barriers to Economic Development
5:22

Capital Flight | Barriers to Economic Development

  • Order:
  • Duration: 5:22
  • Uploaded Date: 01 Jan 2023
  • views: 1725
Capital flight can be an important barrier to economic growth and development. In this video we look at some of the causes and consequences of capital flight. Capital flight is the uncertain and rapid movement of large sums of money out of a country. The UK’s Overseas Development Institute (ODI) defines capital flight as "the outflow of resident capital which is motivated by economic and political uncertainty.” #tutor2ueconomics #economicsexplained #capitalflight #macroeconomics #currencies #ibeconomics #edexceleconomics #aqaeconomics #ocreconomics #economicdevelopment
https://wn.com/Capital_Flight_|_Barriers_To_Economic_Development
Ask Prof Wolff: How Anti-Capitalists Defeat "Capital Flight"
8:53

Ask Prof Wolff: How Anti-Capitalists Defeat "Capital Flight"

  • Order:
  • Duration: 8:53
  • Uploaded Date: 28 Apr 2021
  • views: 14454
A patron of Economic Update asks: "How can a progressive anti-capitalist movement survive 'capital flight'?" This is Professor Richard Wolff's video response. Submit your own question to be considered for a video response by Prof. Wolff on Patreon: https://www.patreon.com/economicupdate/community. Ask Prof Wolff is a @democracyatwrk production. We are committed to providing these videos to you free of ads. Please consider supporting us on Patreon.com/economicupdate. Become a part of the growing Patreon community and gain access to exclusive patron-only content, along with the ability to ask Prof. Wolff questions like this one! Your support also helps keep this content free to the public. Spreading Prof. Wolff's message is more important than ever. Help us continue to make this possible. _________________________________________________________________________ Learn more about Prof Wolff's new book, "The Sickness is the System: When Capitalism Fails to Save Us from Pandemics or Itself," available now at www.democracyatwork.info/books “A magnificent source of hope and insight.” Yanis Varoufakis, Greek economist, academic, philosopher, politician, author of Talking to my daughter about the economy. _________________________________________________________________________ Follow Wolff ONLINE: Web: http://www.rdwolff.com Patreon: https://www.patreon.com/economicupdate Twitter: http://twitter.com/profwolff http://twitter.com/democracyatwrk Facebook: http://www.facebook.com/EconomicUpdate http://www.facebook.com/RichardDWolff http://www.facebook.com/DemocracyatWrk Subscribe to the EU podcast: http://economicupdate.libsyn.com Shop our worker CO-OP made MERCH: https://democracy-at-work-shop.myshopify.com/
https://wn.com/Ask_Prof_Wolff_How_Anti_Capitalists_Defeat_Capital_Flight
Capital Flight Definition
1:03

Capital Flight Definition

  • Order:
  • Duration: 1:03
  • Uploaded Date: 24 Jul 2022
  • views: 2079
Visit our full dictionary of terms at OfficeDictionary.com
https://wn.com/Capital_Flight_Definition
Everything you need to know about China's capital flight
3:04

Everything you need to know about China's capital flight

  • Order:
  • Duration: 3:04
  • Uploaded Date: 10 Mar 2016
  • views: 13227
https://wn.com/Everything_You_Need_To_Know_About_China's_Capital_Flight
China’s capital flight explained | FT World
1:51

China’s capital flight explained | FT World

  • Order:
  • Duration: 1:51
  • Uploaded Date: 11 Sep 2015
  • views: 17347
► Subscribe to the Financial Times on YouTube: http://bit.ly/FTimeSubs James Kynge, FT emerging markets editor, explains in 90 seconds how record capital outflows from China and tightening controls by Beijing are affecting companies and individuals. For more video content from the Financial Times, visit http://www.FT.com/video Twitter https://twitter.com/ftvideo Facebook https://www.facebook.com/financialtimes
https://wn.com/China’S_Capital_Flight_Explained_|_Ft_World
Capital Flight: Chinese Funds Leaving the Western World
8:22

Capital Flight: Chinese Funds Leaving the Western World

  • Order:
  • Duration: 8:22
  • Uploaded Date: 24 Jul 2023
  • views: 11529
https://wn.com/Capital_Flight_Chinese_Funds_Leaving_The_Western_World
Africa lost $836bn from 'illicit capital flight' from 2000-2015 | Inside Story
25:31

Africa lost $836bn from 'illicit capital flight' from 2000-2015 | Inside Story

  • Order:
  • Duration: 25:31
  • Uploaded Date: 30 Sep 2020
  • views: 95774
A new report from the United Nations says the continent would be debt free if money hadn't left illegally. Much of the loss is through corruption, tax evasion and mis-invoicing of exports such as gold. The UN says the problem is robbing the continent and its people of their future. But what can be done to stop these practices? Presenter: Hashem Ahelbarra Guests: Junior Davis - lead author of the report, from the United Nations Conference on Trade and Development. Sanusha Naidu - senior research fellow at the Institute for Global Dialogue. Edwin Ikhuoria - Africa Executive Director at ONE. - Subscribe to our channel: http://aje.io/AJSubscribe - Follow us on Twitter: https://twitter.com/AJEnglish - Find us on Facebook: https://www.facebook.com/aljazeera - Check our website: https://www.aljazeera.com/ #AlJazeeraEnglish #Africa #InsideStory
https://wn.com/Africa_Lost_836Bn_From_'Illicit_Capital_Flight'_From_2000_2015_|_Inside_Story
Real Interest Rates and Capital Flows- Macro Topic 6.6
6:35

Real Interest Rates and Capital Flows- Macro Topic 6.6

  • Order:
  • Duration: 6:35
  • Uploaded Date: 27 Nov 2018
  • views: 128102
Congratulations on completing your macro class. Group hug! But before you leave, make sure that you understand how the key graphs relate to each other. In this video I explain three things: 1.how the business cycle, production possibilities curve, aggregate demand/supply and Phillips curve are related 2. How monetary policy works using graphs 3. How the loanable funds market graph is related to the foreign exchange market. (This last one is probably something that you haven't seen). Thank you so much for watching my videos. Please subscribe!
https://wn.com/Real_Interest_Rates_And_Capital_Flows_Macro_Topic_6.6
The Problem of Capital Flight
1:58:08

The Problem of Capital Flight

  • Order:
  • Duration: 1:58:08
  • Uploaded Date: 30 Apr 2015
  • views: 846
The problem of capital flight 15h30-17h00 10-5-15
https://wn.com/The_Problem_Of_Capital_Flight
Capital Flight From Africa: How the Poor Finance the Rich
16:08

Capital Flight From Africa: How the Poor Finance the Rich

  • Order:
  • Duration: 16:08
  • Uploaded Date: 01 Mar 2018
  • views: 3280
A new World Bank report comparing economic growth among different regions in the world ignores key factors in addressing wealth and inequality in Africa--particularly the wealth that is stashed offshore in developed countries, says economist and author Leonce Ndikumana Visit http://therealnews.com for more stories and help support our work by donating at http://therealnews.com/donate.
https://wn.com/Capital_Flight_From_Africa_How_The_Poor_Finance_The_Rich
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 3:14:57

Capital Flight | Barriers to Economic Development

Capital flight can be an important barrier to economic growth and development. In this video we look at some of the causes and consequences of capital flight. Capital flight is the uncertain and rapid movement of large sums of money out of a country. The UK’s Overseas Development Institute (ODI) defines capital flight as "the outflow of resident capital which is motivated by economic and political uncertainty.” #tutor2ueconomics #economicsexplained #capitalflight #macroeconomics #currencies #ibeconomics #edexceleconomics #aqaeconomics #ocreconomics #economicdevelopment
5:22
Capital Flight | Barriers to Economic Development
Capital flight can be an important barrier to economic growth and development. In this vid...
published: 01 Jan 2023
Play in Full Screen
8:53
Ask Prof Wolff: How Anti-Capitalists Defeat "Capital Flight"
A patron of Economic Update asks: "How can a progressive anti-capitalist movement survive ...
published: 28 Apr 2021
Play in Full Screen
1:03
Capital Flight Definition
Visit our full dictionary of terms at OfficeDictionary.com
published: 24 Jul 2022
Play in Full Screen
3:04
Everything you need to know about China's capital flight
published: 10 Mar 2016
Play in Full Screen
1:51
China’s capital flight explained | FT World
► Subscribe to the Financial Times on YouTube: http://bit.ly/FTimeSubs James Kynge, FT em...
published: 11 Sep 2015
Play in Full Screen
8:22
Capital Flight: Chinese Funds Leaving the Western World
published: 24 Jul 2023
Play in Full Screen
25:31
Africa lost $836bn from 'illicit capital flight' from 2000-2015 | Inside Story
A new report from the United Nations says the continent would be debt free if money hadn't...
published: 30 Sep 2020
Play in Full Screen
6:35
Real Interest Rates and Capital Flows- Macro Topic 6.6
Congratulations on completing your macro class. Group hug! But before you leave, make sure...
published: 27 Nov 2018
Play in Full Screen
1:58:08
The Problem of Capital Flight
The problem of capital flight 15h30-17h00 10-5-15
published: 30 Apr 2015
Play in Full Screen
16:08
Capital Flight From Africa: How the Poor Finance the Rich
A new World Bank report comparing economic growth among different regions in the world ign...
published: 01 Mar 2018
Play in Full Screen

Capital flight

Capital flight, in economics, occurs when assets or money rapidly flow out of a country, due to an event of economic consequence. Such events could be an increase in taxes on capital or capital holders or the government of the country defaulting on its debt that disturbs investors and causes them to lower their valuation of the assets in that country, or otherwise to lose confidence in its economic strength.

This leads to a disappearance of wealth, and is usually accompanied by a sharp drop in the exchange rate of the affected country - depreciation in a variable exchange rate regime, or a forced devaluation in a fixed exchange rate regime.

This fall is particularly damaging when the capital belongs to the people of the affected country, because not only are the citizens now burdened by the loss in the economy and devaluation of their currency, but probably also, their assets have lost much of their Real versus nominal value (economics)|nominal value. This leads to dramatic decreases in the purchasing power of the country's assets and makes it increasingly expensive to import goods and acquire and form of foreign facilities i.e. medical facilities.

'); } 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: capital flight

Edit

Indonesia sends off third delivery of aid for Myanmar quake victims

Antara News 04 Apr 2025
The flights will have a stopover in Banda Aceh before proceeding to Naypyidaw, the capital of Myanmar ... Also joining the April 1 aid delivery flight were 39 personnel from various ministries and ...
Edit

Russian Drone Strike On Kharkiv Kills 3, Injures 32

Radio Free Europe 04 Apr 2025
Russian news agencies later quoted a representative of the federal transport agency as saying the capital's Vnukovo airport had been reopened for departing flights subject to further official approvals ... ....
Edit

Experts Optimistic Fly Nigeria Act Will Empower Nigerian Carriers, Reduce Capital Flight

This Day 04 Apr 2025
This will generate more employment and revenue in the industry, access to capital, foreign investment, career projection for core professionals and most importantly ignite a dash for code share and alliance with Nigerian carriers,” Ohunayo said.
Edit

DeFi TVL Plunge: Shocking 27% Drop Signals Market Correction in Q1 2025

Bitcoin World 04 Apr 2025
Such incidents erode trust in the crypto space and can trigger capital flight as users become wary of potential risks associated with centralized and decentralized platforms alike.
Edit

Israel's flagship airline to resume Moscow flights in May

Xinhua 03 Apr 2025
The airline suspended flights to the Russian capital in late December 2024, citing "developments in Russian airspace" as the reason for the move ... The resumed service will include seven weekly flights to the Russian capital.
Edit

Second batch of earthquake relief supplies from Chinese government arrives in Yangon

ECNS 03 Apr 2025
A chartered flight operated by China Cargo Airlines transported the supplies from the Beijing ...
Edit

Urgent Downgrade: JPMorgan Issues Alarming Warning on Emerging Market Currencies as US Tariffs Escalate

Bitcoin World 03 Apr 2025
Investor Sentiment and Capital Flight ... This can trigger capital flight, where investors move their assets out of the country, further weakening the currency ... capital outflows, weakening a currency.
Edit

ASEAN 2025

Malaysian National News Agency 03 Apr 2025
By CW Sim ... Third, capital flight and investor uncertainty ... Global capital is increasingly migrating to stable, rules-based regions ... Prime Minister Anwar and President Prabowo now hold unique moral and strategic capital to lead a new discourse ... ....
Edit

Resilient Kenyan Shilling: How Low Dollar Demand Fuels Currency Stability

Bitcoin World 03 Apr 2025
... fluctuations, or geopolitical events can trigger capital outflows and put pressure on the shilling ... Political transitions or instability can sometimes lead to capital flight and currency volatility.
Edit

Stock rout deepens on tariff shock as bonds rally: Markets wrap

The Spokesman-Review 03 Apr 2025
Wall Street’s rebellion against Donald Trump’s tariff war is intensifying, spurring a flight into fixed-income havens. The Russell 2000 Index, a gauge of small-capitalization companies, plunged as much ...
Edit

Is the U.S. Heading Into a Recession Amid Trump’s Tariffs? ‘Liberation Day’ Fallout Sparks Fresh Fears

Time 03 Apr 2025
Is the U.S. Heading Into a Recession Amid Trump’s Tariffs? ‘Liberation DayFallout Sparks Fresh Fears. PoliticsEconomy ... Reporter ... Reporter ... “I think what this is indicative of is that there's just a flight of capital and assets outside away from the U.S.
Edit

Air Canada celebrates resumption of Ottawa – London Heathrow flights

TravelDailyNews 02 Apr 2025
MONTREAL – Air Canada marked the resumption of its international flights linking Canada’s capital city with the United Kingdom’s largest airport and international gateway.
Edit

Domestic flights in high demand for upcoming holiday

Vietnam News 02 Apr 2025
For direct flights from the island to the capital city, passengers are expected to pay between VNĐ4.1 million&nbsp;and VNĐ6.3 million ($160-245), but limited seats are available ... For flights between ...
Edit

Rome, Paris and Vienna, Iberia’s European highlights next winter

TravelDailyNews 02 Apr 2025
Iberia has published its flight schedule for the upcoming winter season, publishing its short and medium-haul routes ... Paris will have up to 11 daily flights this winter, a real air bridge between the two capitals.
Edit

Girona-Costa Brava Airport kicks off summer season with 49 destinations

Catalan News 02 Apr 2025
This summer 2025 the airport in northern Catalonia will have flights to 15 European countries.&nbsp; ... The Irish low-cost airline launched its route to the Bosnian capital, Sarajevo, on Monday.
×