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

Podcasts:

  • Why dropping oil prices could doom Putin's invasion of Ukraine before Trump's ceasefire

    Frontline's Philip Ingram answers members questions on the war in Ukraine and Trump's peace plan as dropping oil revenues threaten to tank Putin's economy. Join this channel to get access to perks - https://www.youtube.com/channel/UCTjDhFuGXlhx9Us0gq0VK2w/join 📻 Listen to Times Radio - https://www.thetimes.co.uk/radio 🗞 Subscribe to The Times https://www.thetimes.co.uk/subscribe/radio-3for3/ 📲 Get the free Times Radio app https://www.thetimes.co.uk/radio/how-to-listen-to-times-radio/app

    published: 20 Apr 2025
  • How tariffs are impacting oil prices

    Oil prices (CL=F, BZ=F) and gas (NG=F) have fallen 7% over the last month, with Trump's tariffs raising concerns about demand. Watt-Logic Energy Consultant Lathryn Porter joins Catalysts to discuss how the US-China trade dynamics could influence the broader energy market. To watch more expert insights and analysis on the latest market action, check out more Catalysts here: https://finance.yahoo.com/videos/series/catalysts/ #youtube #energy #china About Yahoo Finance: Yahoo Finance provides free stock ticker data, up-to-date news, portfolio management resources, comprehensive market data, advanced tools, and more information to help you manage your financial life. - Get the latest news and data at finance.yahoo.com - Download the Yahoo Finance app on Apple (https://apple.co/3Rten0R) ...

    published: 16 Apr 2025
  • Crude Oil Prices Gain 2% In Asia Overnight After US Imposes New Sanctions On Iran Amid Nuclear Talks

    Crude prices surge 2% in Asia after US imposes new sanctions on Iran amid nuclear talks. Manisha Gupta with more details. #crudeoil #crude #crudeoilpricetoday #crudeoilprice #crudeoilprices #usa #iran #commodities #commoditymarket #cnbctv18 #businessnews #businessnewstoday #businessnewsinenglish #sharemarkettoday 🔴CNBC TV18 LIVE TV: https://youtube.com/live/P857H4ej-MQ SUBSCRIBE to our Channel: https://bit.ly/3nvEcxf --------------------------------------------------------------------------------------------------------------------- 👑 Check Out Top CNBC TV18 Playlist Videos: 🔹Young Turks Reloaded with Shereen Bhan: https://www.youtube.com/playlist?list=PLjq9mRS1PfGAeBW0FxoO8D2cbKx8YPKAZ 🔹 World News: https://www.youtube.com/playlist?list=PLjq9mRS1PfGDHHT...

    published: 23 Apr 2025
  • Oil could be headed sharply lower

    Experts warn of potential risks in the oil market as global uncertainty looms. Transcript: CARLEY GARNER: Crude oil has had a nice little rally obviously in the last week or two. And a lot of that is based on the idea of potential sanctions on Russia, maybe even Iran. And so that would pull some barrels off the market. But the reality is, in the big picture, we are very well supplied. So if those sanctions don't come into play or those entities find ways to get around them, which has kind of been the MO for those types of things. The crude oil price should continue to make lower, lower highs and lower lows. We've seen basically since the March, I think it was 2022 high, crude oil rallied to $125, $130. Since then, we've basically been seeing every rally get sold into, and I think that's...

    published: 18 Apr 2025
  • The main thing hanging over the oil market is tariff uncertainty, says S&P Global's Dan Yergin

    Dan Yergin, S&P Global vice chairman, joins 'Squawk Box' to discuss the state of the oil market, what to make of the recent volatility, market outlook, and more.

    published: 21 Apr 2025
  • Oil Prices Hit Four-Year Low on OPEC Announcement

    Oil prices have fallen to a four-year low due to a surprise output increase by OPEC+ and escalating global trade war. Brent prices are down 13% in two days - heading below $65 a barrel. Prices for other commodities are also dropping. Bloomberg's Will Kennedy reports from London. -------- 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 w...

    published: 04 Apr 2025
  • What oil prices are indicating about the economy

    Oil prices (CL=F, BZ=F) are down double digits since the start of 2025 as US President Trump's trade war fuels worries about the global economy. Tortoise senior portfolio manager and managing director Rob Thummel sits down with Madison Mills and Wolfe Research chief economist Stephanie Roth to examine the oil market and what it signals about the global economy. To watch more expert insights and analysis on the latest market action, check out more Catalysts here: https://finance.yahoo.com/videos/series/catalysts/ #youtube #stocks #tariffs About Yahoo Finance: Yahoo Finance provides free stock ticker data, up-to-date news, portfolio management resources, comprehensive market data, advanced tools, and more information to help you manage your financial life. - Get the latest news and data ...

    published: 10 Apr 2025
  • Oil prices of $70-$85 per barrel work well for OPEC, Goldman Sachs' Struyven says

    Daan Struyven, co-head of global commodities research and head of oil research at Goldman Sachs, discusses the outlook for oil markets and gold prices.

    published: 26 Feb 2025
  • Oil Prices at Four-Year Low on Trade War, Surprise OPEC+ Move

    Oil sank to a four-year low as an intensifying global trade war threatens to batter energy demand, with a fresh wave of US levies going into effect in a move that will deal a heavy blow to the global economy. The losses have been compounded by a decision by OPEC+ to loosen output curbs at a faster clip than previously expected. Ziad Daoud of Bloomberg Economics has the latest. -------- 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://w...

    published: 09 Apr 2025
Why dropping oil prices could doom Putin's invasion of Ukraine before Trump's ceasefire
9:57

Why dropping oil prices could doom Putin's invasion of Ukraine before Trump's ceasefire

  • Order:
  • Duration: 9:57
  • Uploaded Date: 20 Apr 2025
  • views: 33871
Frontline's Philip Ingram answers members questions on the war in Ukraine and Trump's peace plan as dropping oil revenues threaten to tank Putin's economy. Join this channel to get access to perks - https://www.youtube.com/channel/UCTjDhFuGXlhx9Us0gq0VK2w/join 📻 Listen to Times Radio - https://www.thetimes.co.uk/radio 🗞 Subscribe to The Times https://www.thetimes.co.uk/subscribe/radio-3for3/ 📲 Get the free Times Radio app https://www.thetimes.co.uk/radio/how-to-listen-to-times-radio/app
https://wn.com/Why_Dropping_Oil_Prices_Could_Doom_Putin's_Invasion_Of_Ukraine_Before_Trump's_Ceasefire
How tariffs are impacting oil prices
6:52

How tariffs are impacting oil prices

  • Order:
  • Duration: 6:52
  • Uploaded Date: 16 Apr 2025
  • views: 2505
Oil prices (CL=F, BZ=F) and gas (NG=F) have fallen 7% over the last month, with Trump's tariffs raising concerns about demand. Watt-Logic Energy Consultant Lathryn Porter joins Catalysts to discuss how the US-China trade dynamics could influence the broader energy market. To watch more expert insights and analysis on the latest market action, check out more Catalysts here: https://finance.yahoo.com/videos/series/catalysts/ #youtube #energy #china About Yahoo Finance: Yahoo Finance provides free stock ticker data, up-to-date news, portfolio management resources, comprehensive market data, advanced tools, and more information to help you manage your financial life. - Get the latest news and data at finance.yahoo.com - Download the Yahoo Finance app on Apple (https://apple.co/3Rten0R) or Android (https://bit.ly/3t8UnXO) - Follow Yahoo Finance on social: X: http://twitter.com/YahooFinance Instagram: https://www.instagram.com/yahoofinance/?hl=en TikTok: https://www.tiktok.com/@yahoofinance?lang=en Facebook: https://www.facebook.com/yahoofinance/ LinkedIn: https://www.linkedin.com/company/yahoo-finance
https://wn.com/How_Tariffs_Are_Impacting_Oil_Prices
Crude Oil Prices Gain 2% In Asia Overnight After US Imposes New Sanctions On Iran Amid Nuclear Talks
3:11

Crude Oil Prices Gain 2% In Asia Overnight After US Imposes New Sanctions On Iran Amid Nuclear Talks

  • Order:
  • Duration: 3:11
  • Uploaded Date: 23 Apr 2025
  • views: 39
Crude prices surge 2% in Asia after US imposes new sanctions on Iran amid nuclear talks. Manisha Gupta with more details. #crudeoil #crude #crudeoilpricetoday #crudeoilprice #crudeoilprices #usa #iran #commodities #commoditymarket #cnbctv18 #businessnews #businessnewstoday #businessnewsinenglish #sharemarkettoday 🔴CNBC TV18 LIVE TV: https://youtube.com/live/P857H4ej-MQ SUBSCRIBE to our Channel: https://bit.ly/3nvEcxf --------------------------------------------------------------------------------------------------------------------- 👑 Check Out Top CNBC TV18 Playlist Videos: 🔹Young Turks Reloaded with Shereen Bhan: https://www.youtube.com/playlist?list=PLjq9mRS1PfGAeBW0FxoO8D2cbKx8YPKAZ 🔹 World News: https://www.youtube.com/playlist?list=PLjq9mRS1PfGDHHT6b309VWbeVIxjc73r0 🔹CNBC TV18 Classic Interviews: https://www.youtube.com/playlist?list=PLjq9mRS1PfGDmfXVg7XEQngsCY9RoS-fv 🔹CNBC TV18 Digital: https://www.youtube.com/playlist?list=PLjq9mRS1PfGDCcaVZ_82M9vhLo9lGJYzo 🔹CNBC TV18 Weekend Special: https://www.youtube.com/playlist?list=PLjq9mRS1PfGBHEa5NnoKuUsX5GwxEGuri 🔹CNBC TV18 Next-Gen: https://www.youtube.com/playlist?list=PLjq9mRS1PfGA6roe9q3J9fq_gBIDjX2w7 🔹Overdrive Show: https://www.youtube.com/playlist?list=PLjq9mRS1PfGCnSVjfbWfNCJLrv-CqfGmH 🔹CNBC TV18 Newsreels: https://www.youtube.com/playlist?list=PLjq9mRS1PfGCmABWWQRX4NqGLCtScwqex 🔹Startup Streets: https://www.youtube.com/playlist?list=PLjq9mRS1PfGD3CzrtMr_VJRbIly6sfyFI ------------------------------------------------------------------------------------ You can also connect with CNBC-TV18 News Online Catch the latest news: https://bit.ly/2YbpXBM Follow CNBC-TV18 round the clock: https://www.cnbctv18.com/live-tv/ Stay updated with all the market action in real time: https://www.cnbctv18.com/market-live/ You can also stay updated with all the latest news on-the-go with CNBC-TV18 Minis: https://www.cnbctv18.com/minis/ Like us on Facebook: https://www.facebook.com/cnbctv18india/ Follow us on Twitter: https://twitter.com/CNBCTV18News Follow us on Instagram: https://www.instagram.com/cnbctv18india/ Catch us on: Linkedin: https://in.linkedin.com/company/cnbc-tv18 n18oc_business About CNBC-TV18: India's leading business news channel, CNBC-TV18 offers the most comprehensive coverage of businesses, the economy and the financial markets. Catch all your favourite shows, exclusive videos, big-ticket interviews and more here.
https://wn.com/Crude_Oil_Prices_Gain_2_In_Asia_Overnight_After_US_Imposes_New_Sanctions_On_Iran_Amid_Nuclear_Talks
Oil could be headed sharply lower
1:09

Oil could be headed sharply lower

  • Order:
  • Duration: 1:09
  • Uploaded Date: 18 Apr 2025
  • views: 1614
Experts warn of potential risks in the oil market as global uncertainty looms. Transcript: CARLEY GARNER: Crude oil has had a nice little rally obviously in the last week or two. And a lot of that is based on the idea of potential sanctions on Russia, maybe even Iran. And so that would pull some barrels off the market. But the reality is, in the big picture, we are very well supplied. So if those sanctions don't come into play or those entities find ways to get around them, which has kind of been the MO for those types of things. The crude oil price should continue to make lower, lower highs and lower lows. We've seen basically since the March, I think it was 2022 high, crude oil rallied to $125, $130. Since then, we've basically been seeing every rally get sold into, and I think that's going to continue. So again, we don't know what's going to happen on the political front, but this is a really good time to mind your risk on the downside in oil, because if the support breaks, we've been holding the $65 for two or three years. If that level breaks, there's really nothing stopping it until we get into the low 50s. So we're focused on the downside risk in crude oil. Subscribe | http://t.st/TheStreetTV Earn. Live. Invest. | https://www.thestreet.com/ TheStreet Pro | https://pro.thestreet.com/ #oil #gas #commodities #analysts
https://wn.com/Oil_Could_Be_Headed_Sharply_Lower
The main thing hanging over the oil market is tariff uncertainty, says S&P Global's Dan Yergin
4:53

The main thing hanging over the oil market is tariff uncertainty, says S&P Global's Dan Yergin

  • Order:
  • Duration: 4:53
  • Uploaded Date: 21 Apr 2025
  • views: 11409
Dan Yergin, S&P Global vice chairman, joins 'Squawk Box' to discuss the state of the oil market, what to make of the recent volatility, market outlook, and more.
https://wn.com/The_Main_Thing_Hanging_Over_The_Oil_Market_Is_Tariff_Uncertainty,_Says_S_P_Global's_Dan_Yergin
Oil Prices Hit Four-Year Low on OPEC Announcement
2:13

Oil Prices Hit Four-Year Low on OPEC Announcement

  • Order:
  • Duration: 2:13
  • Uploaded Date: 04 Apr 2025
  • views: 9561
Oil prices have fallen to a four-year low due to a surprise output increase by OPEC+ and escalating global trade war. Brent prices are down 13% in two days - heading below $65 a barrel. Prices for other commodities are also dropping. Bloomberg's Will Kennedy reports from London. -------- 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/Oil_Prices_Hit_Four_Year_Low_On_Opec_Announcement
What oil prices are indicating about the economy
4:54

What oil prices are indicating about the economy

  • Order:
  • Duration: 4:54
  • Uploaded Date: 10 Apr 2025
  • views: 4280
Oil prices (CL=F, BZ=F) are down double digits since the start of 2025 as US President Trump's trade war fuels worries about the global economy. Tortoise senior portfolio manager and managing director Rob Thummel sits down with Madison Mills and Wolfe Research chief economist Stephanie Roth to examine the oil market and what it signals about the global economy. To watch more expert insights and analysis on the latest market action, check out more Catalysts here: https://finance.yahoo.com/videos/series/catalysts/ #youtube #stocks #tariffs About Yahoo Finance: Yahoo Finance provides free stock ticker data, up-to-date news, portfolio management resources, comprehensive market data, advanced tools, and more information to help you manage your financial life. - Get the latest news and data at finance.yahoo.com - Download the Yahoo Finance app on Apple (https://apple.co/3Rten0R) or Android (https://bit.ly/3t8UnXO) - Follow Yahoo Finance on social: X: http://twitter.com/YahooFinance Instagram: https://www.instagram.com/yahoofinance/?hl=en TikTok: https://www.tiktok.com/@yahoofinance?lang=en Facebook: https://www.facebook.com/yahoofinance/ LinkedIn: https://www.linkedin.com/company/yahoo-finance
https://wn.com/What_Oil_Prices_Are_Indicating_About_The_Economy
Oil prices of $70-$85 per barrel work well for OPEC, Goldman Sachs' Struyven says
4:43

Oil prices of $70-$85 per barrel work well for OPEC, Goldman Sachs' Struyven says

  • Order:
  • Duration: 4:43
  • Uploaded Date: 26 Feb 2025
  • views: 1352
Daan Struyven, co-head of global commodities research and head of oil research at Goldman Sachs, discusses the outlook for oil markets and gold prices.
https://wn.com/Oil_Prices_Of_70_85_Per_Barrel_Work_Well_For_Opec,_Goldman_Sachs'_Struyven_Says
Oil Prices at Four-Year Low on Trade War, Surprise OPEC+ Move
3:55

Oil Prices at Four-Year Low on Trade War, Surprise OPEC+ Move

  • Order:
  • Duration: 3:55
  • Uploaded Date: 09 Apr 2025
  • views: 12857
Oil sank to a four-year low as an intensifying global trade war threatens to batter energy demand, with a fresh wave of US levies going into effect in a move that will deal a heavy blow to the global economy. The losses have been compounded by a decision by OPEC+ to loosen output curbs at a faster clip than previously expected. Ziad Daoud of Bloomberg Economics has the latest. -------- 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/Oil_Prices_At_Four_Year_Low_On_Trade_War,_Surprise_Opec_Move
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Why dropping oil prices could doom Putin's invasion of Ukraine before Trump's ceasefire
    9:57
    Why dropping oil prices could doom Putin's invasion of Ukraine before Trump's ceasefireremove from playlist
  • How tariffs are impacting oil prices
    6:52
    How tariffs are impacting oil pricesremove from playlist
  • Crude Oil Prices Gain 2% In Asia Overnight After US Imposes New Sanctions On Iran Amid Nuclear Talks
    3:11
    Crude Oil Prices Gain 2% In Asia Overnight After US Imposes New Sanctions On Iran Amid Nuclear Talksremove from playlist
  • Oil could be headed sharply lower
    1:09
    Oil could be headed sharply lowerremove from playlist
  • The main thing hanging over the oil market is tariff uncertainty, says S&P Global's Dan Yergin
    4:53
    The main thing hanging over the oil market is tariff uncertainty, says S&P Global's Dan Yerginremove from playlist
  • Oil Prices Hit Four-Year Low on OPEC Announcement
    2:13
    Oil Prices Hit Four-Year Low on OPEC Announcementremove from playlist
  • What oil prices are indicating about the economy
    4:54
    What oil prices are indicating about the economyremove from playlist
  • Oil prices of $70-$85 per barrel work well for OPEC, Goldman Sachs' Struyven says
    4:43
    Oil prices of $70-$85 per barrel work well for OPEC, Goldman Sachs' Struyven saysremove from playlist
  • Oil Prices at Four-Year Low on Trade War, Surprise OPEC+ Move
    3:55
    Oil Prices at Four-Year Low on Trade War, Surprise OPEC+ Moveremove from playlist
PLAYLIST TIME: 0:00 / 41:47

Why dropping oil prices could doom Putin's invasion of Ukraine before Trump's ceasefire

Frontline's Philip Ingram answers members questions on the war in Ukraine and Trump's peace plan as dropping oil revenues threaten to tank Putin's economy. Join this channel to get access to perks - https://www.youtube.com/channel/UCTjDhFuGXlhx9Us0gq0VK2w/join 📻 Listen to Times Radio - https://www.thetimes.co.uk/radio 🗞 Subscribe to The Times https://www.thetimes.co.uk/subscribe/radio-3for3/ 📲 Get the free Times Radio app https://www.thetimes.co.uk/radio/how-to-listen-to-times-radio/app
9:57
Why dropping oil prices could doom Putin's invasion of Ukraine before Trump's ceasefire
Frontline's Philip Ingram answers members questions on the war in Ukraine and Trump's peac...
published: 20 Apr 2025
Play in Full Screen
6:52
How tariffs are impacting oil prices
Oil prices (CL=F, BZ=F) and gas (NG=F) have fallen 7% over the last month, with Trump's ta...
published: 16 Apr 2025
Play in Full Screen
3:11
Crude Oil Prices Gain 2% In Asia Overnight After US Imposes New Sanctions On Iran Amid Nuclear Talks
Crude prices surge 2% in Asia after US imposes new sanctions on Iran amid nuclear talks. M...
published: 23 Apr 2025
Play in Full Screen
1:09
Oil could be headed sharply lower
Experts warn of potential risks in the oil market as global uncertainty looms. Transcript...
published: 18 Apr 2025
Play in Full Screen
4:53
The main thing hanging over the oil market is tariff uncertainty, says S&P Global's Dan Yergin
Dan Yergin, S&P Global vice chairman, joins 'Squawk Box' to discuss the state of the oil m...
published: 21 Apr 2025
Play in Full Screen
2:13
Oil Prices Hit Four-Year Low on OPEC Announcement
Oil prices have fallen to a four-year low due to a surprise output increase by OPEC+ and e...
published: 04 Apr 2025
Play in Full Screen
4:54
What oil prices are indicating about the economy
Oil prices (CL=F, BZ=F) are down double digits since the start of 2025 as US President Tru...
published: 10 Apr 2025
Play in Full Screen
4:43
Oil prices of $70-$85 per barrel work well for OPEC, Goldman Sachs' Struyven says
Daan Struyven, co-head of global commodities research and head of oil research at Goldman ...
published: 26 Feb 2025
Play in Full Screen
3:55
Oil Prices at Four-Year Low on Trade War, Surprise OPEC+ Move
Oil sank to a four-year low as an intensifying global trade war threatens to batter energy...
published: 09 Apr 2025
Play in Full Screen
'); } 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: oil prices

Edit

Rubber Market Ends Mixed Amid Regional Uptrend, Steady Oil Prices

Malaysian National News Agency 06 May 2025
Rubber Market Ends Mixed Amid Regional Uptrend, Steady Oil Prices ... rubber market ended mixed today amid an uptrend in the regional rubber futures markets and gains in oil prices.
Edit

Trump says with lower oil prices, Putin is more eager to settle the Ukraine war

Korea Times 06 May 2025
President Donald Trump said Moscow and Kyiv want to settle the war in Ukraine and that Russian President Vladimir Putin was more inclined towards peace after the recent fall in the price of oil.
Edit

Saudi Arabia’s Budget Deficit Surged Before the Oil Price Crash

Oil Price 06 May 2025
The recent oil price crash will surely hit Saudi Arabia’s state finances going forward, but the Kingdom ...
Edit

Oil Prices Bounce Back From OPEC+ Bombshell

Oil Price 06 May 2025
Oil prices rallied aggressively on Tuesday morning, recovering from the OPEC+-induced drop that was sparked by ...
Edit

Why are oil prices falling? And what does it mean for Long Islanders?

Newsday 06 May 2025
crude oil prices fell about 2% on Monday to their lowest level since 2021, or about $57.01 per barrel as of 4 p.m ... On Long Island, the drop in oil prices means significantly lower gas prices than a year ago, according to AAA.
Edit

Oil prices will drop to $40 range following OPEC+ decision, predicts oil analyst Paul Sankey

CNBC 06 May 2025
Paul Sankey, Sankey research president & lead analyst, joins 'Fast Money' to talk oil prices, the state of the energy sector, OPEC+, and more ... .
Edit

Oil Prices Surge as Market Shrugs Off OPEC Quota Shock

Oil Price 06 May 2025
Oil prices staged a robust comeback on Tuesday, clawing back ground lost after OPEC’s surprise weekend ...
Edit

Oil Price Slide Triggers Demand Jump and Slight Rebound

Oil Price 06 May 2025
Low oil prices have done what they always do, boosting demand for the commodity.
Edit

Oil prices up after sharp drop sparked by OPEC+ output hike plan

Anadolu Agency 06 May 2025
Oil prices rose on Tuesday after a sharp drop triggered by OPEC+’s announcement to increase production, amid ongoing concerns about oversupply ... also contributes to the upward pressure on oil prices.
Edit

Brent crude oil price forecast by Citi, Goldman Sachs, and Morgan Stanley

Invezz 06 May 2025
It dropped to a low of $58.7 on Monday, its lowest level since February 2021 also as analysts from companies like Citigroup, Goldman Sachs, and Morgan Stanley slashed their oil price forecast.Why crude oil price is crashing.
Edit

KPC: Kuwait oil price drops USD 2.47 to USD 59.94 pb

Kuna 06 May 2025
KUWAIT, May 6 (KUNA) -- The price of Kuwaiti oil dropped by USD 2.47 to USD ...
×