Follow me on LinkedInFollow me on TwitterFollow me on FacebookFollow me on Facebook
Categories

Putting ethics at the heart of finance AI adoption

Article

14 hours ago

Industry experts

July 22, 2025

AI
9 Min read

Share

As artificial intelligence (AI) becomes ever more embedded across finance—from algorithmic fund management to client engagement—it is increasingly clear that AI ethics is not an optional extra but a strategic differentiator. Firms that build ethical rigour into data sourcing, model training and deployment not only tick regulatory boxes but can also gain trust from clients, investors and regulators.

Regulation sets the tone
The Financial Conduct Authority (FCA)* has voiced clear concerns over “autonomous agents operating… at phenomenal speeds” in financial markets, which risk undermining the principle of clean markets. While the UK leans towards regulator‑led guidance over prescriptive rules, the message is unambiguous: reliability, explainability, data integrity and governance must be integral to any AI solution.

In parallel, the EU’s AI Act introduces a risk‑based framework that mandates transparency in model training data and requires meaningful human oversight. The legislation, recently passed by the European Parliament, will soon become enforceable across member states, putting non‑compliant tools at risk of fines and reputational harm—particularly in regulated sectors like asset management and investment banking.

Copyright‑clean data is non‑negotiable
Legal provenance is no longer a back‑office concern. As Reuters highlights, the opacity of so‑called ‘black box’ models presents not just operational risk, but a legal one too. AI tools trained on copyrighted materials without permission may be unusable in production settings, especially under closer scrutiny from compliance teams.
Amundi Technology offers a case in point. The platform’s AI modules for investment and risk analysis use strictly licensed datasets, avoiding publicly scraped sources. According to executives quoted in industry publications, this was a deliberate choice to align with MiFID II and GDPR expectations—demonstrating how data integrity contributes directly to client confidence and commercial adoption.

Ethics influences client and investor appeal
Firms such as Goldman Sachs, Schroders Capital and Liquidity Group* are exploring AI’s potential across deal sourcing and operational optimisation. However, all three have stressed the risks of data bias and the need for robust human oversight during deployment.

Ethical AI isn’t a bolt‑on compliance measure. It’s the new foundation of trust in financial services.

A recent EY survey of European financial institutions highlighted a dual imperative: firms must invest in AI capability and also ensure their frameworks address ethics and social responsibility. As marketing professionals, this opens a narrative advantage—demonstrating a clear link between responsible AI and long‑term performance outcomes.

Margaret Mitchell on ethics and intent
Margaret Mitchell, chief ethics scientist at Hugging Face and a former AI lead at Google, warns against progress for its own sake. In an interview with the Financial Times, she said:

The AI community often prioritises technological advancement over societal well‑being, leading to biases and real‑world harms.” In the context of finance, where decisions impact not just portfolios but people’s lives, this perspective is critical.

Financial stability and systemic risk
The Bank of England notes that three in four UK financial firms already use AI in some capacity, with applications expected to double in the next five years. However, it also highlights systemic risks linked to overreliance on third‑party models and infrastructure. A report from the Financial Stability Board echoes this, warning that wide‑scale adoption of unverified or homogenous models could amplify shocks across global markets.
Again, marketers have a unique opportunity to position their firms as risk‑mitigated and regulation‑ready—both powerful differentiators in capital markets communications.

Why ethics sells
Trust sells, and ethical AI builds trust. According to a recent LinkedIn article highlighting that “companies conducting AI ethics audits report double the ROI compared to those who don’t”, the message for marketing teams is clear:

  • Promote certified model audits and bias checks
  • Communicate readiness under FCA and EU regulation
  • Showcase case studies with measurable impacts
  • Seek third-party endorsements from industry bodies such as UK Finance or the CFA Institute

AI framework for marketers

Focus area Messaging angle
Ethically sourced data “We only use licensed, auditable data with full traceability”
Transparency “Our AI models are explainable and subject to human review”
Bias control “Ongoing bias testing using independent benchmarks”
Governance “We maintain an AI ethics board and cross‑functional governance committee”
Systemic resilience “Our AI tools are stress‑tested to minimise market‑wide risk exposure”

These are not just compliance ticks—they are critical touch points in buyer journeys.

Looking ahead
As the AI Act takes hold in Europe and UK regulators evolve their response, the bar is rising. Ethical AI is no longer a side note, but central to brand differentiation and long‑term adoption. Finance marketers who can confidently tell this story—grounded in transparency, regulation and commercial impact—will set the pace for the sector.

If you’d like to know more contact The Dubs Agency we’d love to help.

* Link may require subscription to view full article

Related Articles

Subscribe

News and analysis for Financial Marketers

Visit
The Dubs agency

When we're not lovingly crafting finance content, The Dubs Agency works with global clients delivering award winning projects. Check us out to find out more

thedubs.com

The FINANCIALMARKETER is the publishing arm for the dubs

The Dubs is the content marketing agency for the finance sector globally. 
(function() { var divisor = 10; var audios_status = {}; function eventHandler(e) { // Ensure the audio element's status is initialized before proceeding // This is a safeguard, but the main initialization loop should ideally cover this. if (!audios_status[e.target.id]) { initializeAudioStatus(e.target); } switch (e.type) { case 'timeupdate': audios_status[e.target.id].current = Math.round(e.target.currentTime); var pct = Math.floor(100 * audios_status[e.target.id].current / e.target.duration); for (var j in audios_status[e.target.id]._progress_markers) { // Convert j to a number for proper comparison var marker = parseInt(j, 10); if (pct >= marker && marker > audios_status[e.target.id].greatest_marker) { audios_status[e.target.id].greatest_marker = marker; } } if (audios_status[e.target.id].greatest_marker && !audios_status[e.target.id]._progress_markers[audios_status[e.target.id].greatest_marker]) { audios_status[e.target.id]._progress_markers[audios_status[e.target.id].greatest_marker] = true; dataLayer.push({ 'event': 'audio', 'audioPlayerAction': 'Progress %' + audios_status[e.target.id].greatest_marker, 'audioTitle': decodeURIComponent(e.target.currentSrc.split('/').pop()) // Use .pop() for cleaner last segment }); } break; case 'play': dataLayer.push({ 'event': 'audio', 'audioPlayerAction': 'play', 'audioTitle': decodeURIComponent(e.target.currentSrc.split('/').pop()) }); break; case 'pause': dataLayer.push({ 'event': 'audio', 'audioPlayerAction': 'pause', 'audioTitle': decodeURIComponent(e.target.currentSrc.split('/').pop()), 'audioValue': audios_status[e.target.id].current }); break; case 'ended': dataLayer.push({ 'event': 'audio', 'audioPlayerAction': 'finished', 'audioTitle': decodeURIComponent(e.target.currentSrc.split('/').pop()) }); break; default: break; } } function initializeAudioStatus(audioElement) { var audioTagId; if (!audioElement.getAttribute('id')) { audioTagId = 'html5_audio_' + Math.random().toString(36).slice(2); audioElement.setAttribute('id', audioTagId); } else { audioTagId = audioElement.getAttribute('id'); } // Initialize only if not already initialized if (!audios_status[audioTagId]) { audios_status[audioTagId] = {}; audios_status[audioTagId].greatest_marker = 0; audios_status[audioTagId]._progress_markers = {}; for (var j = 0; j <= 100; j += divisor) { // Iterate up to 100, stepping by divisor audios_status[audioTagId]._progress_markers[j] = false; } audios_status[audioTagId].current = 0; } } var audios = document.getElementsByTagName('audio'); for (var i = 0; i < audios.length; i++) { initializeAudioStatus(audios[i]); // Initialize status for each audio element audios[i].addEventListener("play", eventHandler, false); audios[i].addEventListener("pause", eventHandler, false); audios[i].addEventListener("ended", eventHandler, false); audios[i].addEventListener("timeupdate", eventHandler, false); } })();