Broadcast United

ECB poised to cut rates next week

Broadcast United News Desk
ECB poised to cut rates next week

[ad_1]

Philip Lane, the ECB’s chief economist, said the ECB is ready to cut interest rates next week. “If there are no major surprises, what we are seeing now is enough to remove the highest level of restrictions,” Lane said in an interview with the Financial Times. With restrictive interest rate levels, monetary authorities understand that interest rate levels will slow economic growth.

The data will help determine the pace of further monetary easing by the ECB in the coming months. ECB Vice President Luis de Guindos recently published a A 0.25 percentage point rate cutThe next rate decision is due on June 6. Another rate meeting will be held on July 18.

Austria lags behind

The ECB has kept the deposit rate that financial institutions receive when they park excess funds with the central bank at a record 4.0% since September 2023. The key rate at which banks receive new funds from the ECB is 4.5%. The euro regulator’s 2.0% inflation target is now within reach, with inflation at 2.4% in April.

Inflation should not be “stuck”

In Lane’s view, the ECB must ensure that the key interest rate remains within a restricted zone this year. “But within this restricted zone, we can lower it slightly,” the economist said, so the central bank can ensure that inflation does not exceed the target.

Bank of France Governor François Villeroy de Galhau, who is also a member of the ECB’s Monetary Policy Committee, wants to move on to a fast track second rate cut. In the stock market, investors have somewhat tempered expectations for rate cuts this year after new data showed that wage growth in the eurozone accelerated at the beginning of the year. Collective bargaining wages grew by 4.7% in the first quarter after rising by 4.5% in the last quarter of 2023. However, Lane believes that the direction is still correct: “The general direction of wages still points to weakness, which is crucial” Wage growth is considered one of the main drivers of inflation in the 20 countries.

window.didomiOnReady.push(() => { window.didomiScriptStatus="ready"; });

window.didomiHelper = {

_essentialVendorIds: ( 'c:pianosoft-KFChz6mr', 'c:googleext-ZWjBAiL8', 'smart' ),

purposeMapping: { 1: 'cookies', 2: 'select_basic_ads', 3: 'create_ads_profile', 4: 'select_personalized_ads', 5: 'create_content_profile', 6: 'select_personalized_content', 7: 'measure_ad_performance', 8: 'measure_content_performance', 9: 'market_research', 10: 'improve_products', 25: 'strictly_necessary', 26: 'funktional', 29: 'socialmedia', },

socialMediaScripts: { 'facebook': { source: 'https://connect.facebook.net/en_US/sdk.js', onLoad: () => { window.fbAsyncInit = function() { FB.init({ appId : '579158667063181', autoLogAppEvents : true, xfbml : true, version : 'v16.0' }); }; }, }, 'twitter': { source: 'https://platform.twitter.com/widgets.js', }, 'c:instagram': { source: 'https://www.instagram.com/embed.js', onLoad: () => { window('instgrm').Embeds.process(); }, }, 'c:tiktok-KZAUQLZ9': { source: 'https://www.tiktok.com/embed.js', }, 'c:reddit': { source: 'https://embed.redditmedia.com/widgets/platform.js', }, 'c:pinpollgm-e2t3Vxt2': { source: 'https://tools.pinpoll.com/global.js', }, },

debug() { },

isReady() { return window.didomiScriptStatus === 'ready'; },

onReady(cb) { window.didomiOnReady.push(cb); },

onVendorConsent(vendorId, cb) {

if (this._essentialVendorIds.includes(vendorId)) { cb();

return; }

window.didomiOnReady.push((Didomi) => { if (Didomi.isConsentRequired()) {

this.debug(`onVendorConsent: Register script for vendor ${vendorId}`); Didomi.getObservableOnUserConsentStatusForVendor(vendorId) .filter((status) => { return status === true; }) .first() .subscribe((consentStatusForVendor) => {

this.debug(`onVendorConsent: Got consent for vendor ${vendorId}`); cb(); }); } else {

this.debug( `onVendorConsent: No consent required. Script for vendor ${vendorId} will be executed immediately.` ); cb(); } }); },

onVendorConsentChange(vendorId, cb) {

if (this._essentialVendorIds.includes(vendorId)) { cb(true);

return; }

window.didomiOnReady.push((Didomi) => { if (Didomi.isConsentRequired()) {

this.debug(`onVendorConsentChange: Register script for vendor ${vendorId}`); Didomi.getObservableOnUserConsentStatusForVendor(vendorId) .subscribe((consentStatusForVendor) => { this.debug(`onVendorConsent: Consent changed for vendor ${vendorId} to`, consentStatusForVendor);

cb(consentStatusForVendor); }); } else {

this.debug( `onVendorConsentChange: No consent required. Script for vendor ${vendorId} will be executed immediately.` ); cb(true); } }); },

onConsentChange(cb) { window.didomiOnReady.push((Didomi) => { cb(Didomi.getUserStatus());

window.didomiEventListeners.push({ event: 'consent.changed', listener: () => { this.debug(`onConsentChange: Consent data has been changed.`); cb(Didomi.getUserStatus()); } }); }); },

checkVendorConsent(vendorId) { return new Promise((resolve) => {

if (this._essentialVendorIds.includes(vendorId)) { resolve(true); }

window.didomiOnReady.push((Didomi) => { Didomi.getObservableOnUserConsentStatusForVendor(vendorId) .first() .subscribe((consentStatus) => { this.debug(`checkVendorConsent: Consent for vendor ${vendorId} is`, consentStatus); resolve(consentStatus); }); }); }); },

checkPurposesConsent(requiredPurposes) { return new Promise((resolve) => { window.didomiOnReady.push((Didomi) => { const enabledPurposes = Didomi.getUserStatus().purposes.consent.enabled; const consentStatus = requiredPurposes.every((purpose) => enabledPurposes .includes(purpose));

this.debug(`checkPurposesConsent: ConsentStatus is`, consentStatus); resolve(consentStatus); }) }) },

getUserStatus() { return new Promise((resolve) => { window.didomiOnReady.push((Didomi) => { resolve(Didomi.getUserStatus()); }) }) },

checkAllConsent() {

const requiredPurposes = ('cookies', 'select_basic_ads', 'create_ads_profile', 'select_personalized_ads', 'create_content_profile', 'select_personalized_content', 'measure_ad_performance', 'measure_content_performance', 'market_research', 'improve_products', 'funktional', 'socialmedia' );

return this.checkPurposesConsent(requiredPurposes); },

checkConsentDataExists() { return new Promise((resolve) => { window.didomiOnReady.push((Didomi) => { resolve(!Didomi.isUserStatusPartial()) }); }); },

async onAllConsentChange(cb) { this.debug('onAllConsentChange: called'); cb(await this.checkAllConsent());

window.didomiEventListeners.push({ event: 'consent.changed', listener: async () => { this.debug('onAllConsentChange: event'); cb(await this.checkAllConsent()); } }); },

_bannerInteracted: false, onBannerInteracted(cb) { if(this._bannerInteracted) { return; }

window.didomiOnReady.push((Didomi) => { if (Didomi.isConsentRequired()) {

this.debug('onBannerInteracted: Register script for CMP interaction');

const executeCb = () => { if (!Didomi.isUserStatusPartial()) { this.debug( 'onBannerInteracted: Consent info exists. Executing script' ); this._bannerInteracted = true; cb(); } };

if (!Didomi.isUserStatusPartial()) { executeCb(); } else {

window.didomiEventListeners.push({ event: 'notice.hidden', listener: executeCb });

window.didomiEventListeners.push({ event: 'preferences.hidden', listener: executeCb }); } } else {

this.debug(`onBannerInteracted: No consent required. Executing script.`); cb(); } }); },

changeUserStatus(cb) { window.didomiOnReady.push((Didomi) => { const userStatus = Didomi.getUserStatus(); const newUserStatus = cb(userStatus); Didomi.setUserStatus(newUserStatus); this.debug('changeUserStatus: User status has been changed'); }); },

accept(vendors = (), purposes = ()) { this.changeUserStatus((userStatus) => {

const usPurposes = userStatus.purposes.consent.enabled; const newPurposes = (...usPurposes, ...purposes);

userStatus.purposes.consent.enabled = (...new Set(newPurposes));

userStatus.purposes.consent.disabled = userStatus.purposes.consent.disabled.filter(p => !purposes.includes(p));

const usVendors = userStatus.vendors.consent.enabled; const newVendors = (...usVendors, ...vendors) userStatus.vendors.consent.enabled = (...new Set(newVendors));

userStatus.vendors.consent.disabled = userStatus.vendors.consent.disabled.filter(v => !vendors.includes(v));

return userStatus; }); this.debug('accept: Gave consent to vendors', vendors, 'and purposes', purposes); },

acceptAll() { window.didomiOnReady.push((Didomi) => { Didomi.setUserAgreeToAll(); }); },

addEventListener(event, cb) { window.didomiEventListeners.push({ event: event, listener: cb }) },

_scriptErrors: (), onScriptError(cb) {

if (typeof cb === 'function') { this._scriptErrors.push(cb); }

if (window.didomiScriptStatus === 'error') { while (this._scriptErrors.length > 0) { this._scriptErrors.shift()(); } } },

async loadSocialMediaScriptIfConsentEnabled(vendorId) { const consent = await this.checkVendorConsent(vendorId);

if (consent && this.socialMediaScripts(vendorId)) { window('UTIL').loadScript({ src: this.socialMediaScripts(vendorId).source, onLoad: () => { if (this.socialMediaScripts(vendorId).onLoad && typeof this.socialMediaScripts(vendorId).onLoad === 'function' ) { this.socialMediaScripts(vendorId).onLoad(); } }, }); } } }

[ad_2]

Source link

Share This Article
Leave a comment

Leave a Reply

Your email address will not be published. Required fields are marked *