Engineering / Finance
AI in Finance: Applications, Architecture, and Compliance
Introduction
Artificial intelligence has become the defining technology of modern finance. Global spending on AI in financial services is projected to exceed $56 billion in 2026, driven by demand for real-time fraud detection, automated trading, algorithmic credit underwriting, and regulatory compliance automation. The margin between competitive and obsolete in financial services is now measured in milliseconds and basis points, and AI is the lever that decides which side of that margin a firm occupies.
Financial institutions face a unique set of constraints that shape how AI is deployed: regulatory oversight from bodies like the SEC, RBI, and ESMA; requirements for explainability and auditability; extreme low-latency requirements in trading contexts; and the catastrophic cost of model failure. These constraints mean that financial AI is not merely a matter of training accurate models, but of building systems that are robust, compliant, and interpretable under regulatory scrutiny.
This article covers the full landscape of AI in finance: fraud detection, algorithmic trading, credit scoring, natural language processing for markets, risk management, RegTech, and the architectural patterns that make financial AI production-ready. We include real-world benchmarks, architectural diagrams, and deployment guidance drawn from production systems at major financial institutions.
Fraud Detection and Prevention
Fraud detection is the most mature and widely deployed AI application in finance. Global payment fraud losses exceeded $48 billion in 2025, and the speed at which transactions occur demands machine-speed detection. Modern AI-based fraud systems process transactions in real time, scoring each one for fraud probability within milliseconds while continuously adapting to new fraud patterns.
Real-Time Transaction Monitoring
Production fraud detection pipelines ingest transaction streams from card networks, wire transfer systems, and digital payment platforms, scoring each transaction against a multi-model ensemble. The typical architecture uses a lightweight gradient-boosted model for first-pass scoring (under 5ms latency), with a deep learning model reserved for high-value or ambiguous transactions. In benchmark deployments at tier-1 banks, this cascaded approach scores 15,000 transactions per second with p99 latency under 50ms.
A critical design consideration is the feature engineering pipeline. The highest-signal features include transaction velocity (number of transactions per minute), geographic distance from last transaction, device fingerprint mismatch, and merchant category code deviation. Feature computation must be as fast as model inference; many banks deploy feature stores using Redis or Memcached to cache computed features with sub-millisecond lookup times.
Anomaly Detection Models
Two unsupervised approaches dominate production fraud detection. Isolation forests isolate anomalies by randomly splitting the feature space; anomalies require fewer splits to isolate, producing a natural anomaly score. Autoencoders learn a compressed representation of normal transaction patterns and flag transactions with high reconstruction error. In production comparisons across 12 million transactions, an ensemble of isolation forest and autoencoder achieved 96.3% recall at 0.5% false positive rate, compared to 78% recall for a standalone rule-based system.
The choice between these approaches depends on the fraud profile. Isolation forests perform best on high-dimensional tabular data with clear outlier features. Autoencoders catch subtle, distributed anomalies where no single feature is anomalous but the overall pattern is unusual. Production systems typically deploy both and fuse their scores through a logistic regression meta-model.
Graph Neural Networks for Fraud Rings
Individual transaction scoring misses a crucial dimension: relationships. Fraud rings operate by distributing activity across multiple accounts, devices, and merchants, making each individual transaction appear normal. Graph neural networks solve this by modelling the transaction graph explicitly, with nodes representing accounts, devices, IP addresses, and merchants, and edges representing transactions or shared attributes.
A GNN-based fraud detection system deployed at a European fintech processes a graph with 200 million nodes and 1.5 billion edges. The model, a three-layer GraphSAGE with 64-dimensional embeddings, identifies fraud rings by detecting dense subgraphs where nodes share attributes like device fingerprints or phone numbers. In production, this system flagged 3,400 previously undetected fraud rings in its first quarter, representing $27 million in prevented losses.
Explainability Requirements
Regulators require that fraud detection decisions be explainable. When a legitimate transaction is blocked, the bank must explain why — and the explanation must be specific enough for the customer to provide additional verification. SHAP (SHapley Additive exPlanations) is the industry standard for tabular fraud models, providing per-transaction feature attribution scores. For GNN-based systems, counterfactual explanations are emerging as the preferred approach: what would need to change for this transaction to be classified as legitimate?
{
"model_ensemble": {
"isolation_forest": {
"n_estimators": 300,
"contamination": 0.001,
"threshold": -0.3
},
"autoencoder": {
"layers": [128, 64, 32, 64, 128],
"reconstruction_error_threshold": 0.05
},
"gnn": {
"layers": 3,
"embedding_dim": 64,
"neighbourhood_hops": 2
}
},
"explanation_methods": ["shap", "lime"]
}Algorithmic Trading
Algorithmic trading accounts for over 70% of equity trading volume in developed markets. AI extends the capabilities of traditional algorithmic trading by learning patterns from market data, optimising execution strategies in real time, and managing risk across portfolios with non-linear dependencies.
Reinforcement Learning for Trade Execution
Reinforcement learning is the dominant AI approach for trade execution — the problem of optimally splitting a large order into smaller trades to minimise market impact. The RL agent learns a policy mapping market state (order book depth, volatility, recent price movements) to actions (order size, aggressiveness, venue selection). In production, a PPO-based execution agent deployed by a London-based hedge fund achieved 12% lower implementation shortfall compared to a VWAP benchmark across 50,000 trades.
The key challenge in RL-based trading is reward function design. A reward that only minimises market impact may sacrifice fill rate; a reward that only maximises fill rate may incur excessive market impact. The industry-standard approach is a multi-objective reward that combines implementation shortfall, fill rate, and inventory risk. Reward shaping with a penalty for excessive inventory holding is essential for stable training.
LSTM and Transformer Models for Price Prediction
Deep learning for price prediction has evolved from LSTMs to transformers. While LSTMs capture sequential dependencies in price time series, transformers with multi-head attention learn cross-asset dependencies — the relationship between, for example, oil prices and airline stocks — that LSTMs miss. In a 2025 benchmark across 500 stocks, a temporal fusion transformer (TFT) outperformed LSTM by 18% on directional accuracy (62.3% vs 52.8%) and by 31% on Sharpe ratio of the resulting trading strategy.
However, the edge from price prediction alone is diminishing as these models become commoditised. The most sophisticated quantitative firms now use transformers not for price prediction but for regime detection — identifying whether the market is in a trending, mean-reverting, or high-volatility regime — and switching between strategies accordingly. For a deep dive on time series transformers, see our dedicated guide on Time Series Transformers: Architecture and Applications.
Portfolio Optimisation
Modern portfolio theory relies on mean-variance optimisation, which is notoriously sensitive to input estimates. AI improves portfolio construction through several approaches. Deep reinforcement learning agents learn to rebalance portfolios under transaction costs and market impact. Graph neural networks model the dependency structure between assets as a learnable correlation graph, capturing non-linear relationships that the covariance matrix misses. Black-Litterman models enhanced with ML-generated views produce portfolios with 40% lower turnover and comparable returns to traditional optimisation in backtests.
Backtesting Frameworks and Risk Management
AI-driven strategies introduce unique backtesting risks: overfitting to historical patterns, data snooping across multiple model configurations, and regime-dependent performance that does not generalise. The industry standard is walk-forward analysis with expanding windows, combined with purged cross-validation to prevent leakage between training and testing periods. A conservative framework requires that a strategy demonstrate positive Sharpe ratios across at least three distinct market regimes before deployment.
Risk management for AI trading systems requires additional controls beyond traditional VaR limits. Model risk — the risk that the ML model behaves unpredictably in unseen market conditions — must be quantified through stress testing with synthetic market scenarios. Adversarial testing, where a separate model attempts to find market conditions that break the trading strategy, has become standard practice at leading quant funds.
{
"agent": {
"algorithm": "PPO",
"state_dim": 128,
"action_dim": 3,
"learning_rate": 3e-4,
"gamma": 0.99,
"clip_epsilon": 0.2
},
"risk_controls": {
"max_position_size": 0.05,
"stop_loss": 0.02,
"max_drawdown": 0.15,
"var_limit_99": 0.025
},
"backtest": {
"period": "2018-2026",
"slippage_model": "market_impact",
"transaction_cost": 0.001
}
}Credit Scoring and Underwriting
Machine Learning vs Traditional Credit Models
Traditional credit scoring relies on logistic regression models trained on a narrow set of features: payment history, credit utilisation, length of credit history, and recent credit inquiries. These models are transparent and regulatory-approved but capture only linear relationships and miss the rich behavioural signals available in transaction data.
Gradient-boosted decision trees (XGBoost, LightGBM) are now the industry standard for consumer credit models, outperforming logistic regression by 15-25% on AUC across diverse portfolios. The lift comes from non-linear feature interactions — for example, the combination of high income and recent credit-seeking behaviour is more predictive than either feature alone. Deep learning models, particularly tabular transformers, further improve performance (5-8% AUC lift over GBDT) but face greater regulatory scrutiny due to reduced interpretability.
Alternative Data
Alternative data is the most consequential innovation in credit underwriting since the FICO score. Machine learning models can incorporate cash flow data from bank transactions, utility payment history, rental payment data, digital footprint signals, and even psychometric assessments. For thin-file borrowers — those without traditional credit history — alternative data can generate a scorable population that is 30-50% larger than traditional credit bureau coverage.
The challenge with alternative data is fairness and regulatory compliance. Models using alternative data must be rigorously tested for disparate impact across protected groups. A 2025 study of 12 alternative-data credit models found that 8 exhibited statistically significant bias against minority groups when alternative data was used without bias-mitigation techniques. For a detailed treatment of this topic, see our article on AI Bias, Fairness, and Ethics.
Explainability with LIME and SHAP
Adverse action notification requirements in the US (Equal Credit Opportunity Act) and similar regulations globally mandate that lenders disclose the specific reasons for credit denial. This creates a non-negotiable requirement for model explainability. LIME (Local Interpretable Model-agnostic Explanations) and SHAP are the two dominant frameworks. SHAP is preferred in production because it provides consistent, game-theoretically grounded feature attributions that hold globally across the model.
A production credit model at a major US lender deploys SHAP explanations for every denial decision. The explanation identifies the top three contributing factors and their relative weights. In practice, a typical explanation reads: "Your application was declined primarily due to debt-to-income ratio (47% contribution), followed by length of credit history (28%), and recent credit inquiries (15%)." These explanations satisfy regulatory requirements and provide actionable feedback to borrowers.
Regulatory Compliance for Credit Decisions
AI credit models operate under an increasingly complex regulatory framework. In the EU, high-risk AI systems under the EU AI Act include credit scoring, subjecting AI credit models to the Act's requirements for risk management, data governance, transparency, and human oversight. In the US, the CFPB has issued guidance that complex AI models must still comply with fair lending laws, and that proxy discrimination — where a seemingly neutral feature correlates with protected characteristics — is subject to enforcement. For more on the EU AI Act's impact on financial AI, see our EU AI Act Compliance Guide.
NLP for Finance
Financial markets generate enormous volumes of unstructured text: earnings call transcripts, SEC filings, news articles, analyst reports, regulatory documents, and social media posts. NLP models extract alpha-generating signals from this textual data at a scale impossible for human analysts.
Earnings Call Analysis
Earnings calls are among the highest-signal events for public company valuation. NLP models analyse the tone, sentiment, and linguistic nuance of management's responses. Analysis of forward-looking statements (those containing phrases like "we expect," "we anticipate") has been shown to predict post-call stock returns: a 10% increase in optimistic forward-looking language corresponds to an average 1.8% excess return over the following 30 days.
Specialised financial language models — fine-tuned variants of BERT or Llama trained on corporate filings and call transcripts — outperform general-purpose models by a significant margin. In a benchmark comparing FinBERT to general BERT on earnings call sentiment classification, FinBERT achieved 92.1% accuracy versus 85.3% for the general model, driven largely by its understanding of domain-specific language like "headwinds," "operational leverage," and "organic growth."
Sentiment Analysis for Markets
Market sentiment analysis operates at multiple time scales. At the macro level, aggregate sentiment from news and social media correlates with broad market indices; a one-standard-deviation shift in aggregate sentiment predicts 0.4% S&P 500 movement over the next trading day. At the micro level, sentiment signals for individual stocks from Twitter, Reddit, and news sources generate tradeable signals, particularly for small-cap and retail-favoured stocks.
The state of the art uses hierarchical transformers that process sentiment at the document level (article, tweet, post), aggregate to the entity level (company, sector), and then feed into a temporal model that captures sentiment momentum and reversal patterns. Production systems at quantitative hedge funds process over 500,000 news articles and 10 million social media posts daily through this pipeline.
Document Processing and Regulatory Compliance Monitoring
Financial institutions process millions of pages of documents annually: loan applications, KYC documents, contracts, trade confirmations, and regulatory filings. LLM-based document processing automates extraction, classification, and validation of these documents. In production at a European bank, an LLM pipeline processes 50,000 loan application documents daily, extracting 200+ structured fields per document with 98.7% accuracy, reducing manual processing time by 80%.
Regulatory compliance monitoring is a particularly high-value NLP application. Models continuously scan internal communications (emails, chat messages, recorded calls) for potential violations: insider trading signals, market manipulation language, or unapproved disclosures. A production deployment at a US investment bank monitors 12 million messages daily through a fine-tuned transformer classifier, flagging approximately 200 messages per day for compliance review. The model's precision at compliance-review threshold is 94%, meaning 94% of flagged messages result in a compliance action.
Financial Report Generation
Generative AI is increasingly used for financial report generation: quarterly earnings summaries, portfolio performance reports, regulatory filings, and investment memos. The key requirement is factual accuracy — financial reports cannot hallucinate numbers or dates. Production systems use retrieval-augmented generation with the actual financial data stored in structured databases, and the LLM generates the narrative around the retrieved numbers. For a deeper look at RAG patterns, see our guide on Types of RAG: A Technical Overview.
Risk Management
Value-at-Risk Prediction with ML
Value-at-Risk (VaR) is the foundation of financial risk management, but traditional parametric VaR assumes normal distributions that underestimate tail risk. Machine learning models improve VaR estimation by learning the empirical distribution of returns, capturing skewness, kurtosis, and regime-dependent volatility. In a comparative study across 10 major asset classes, a mixture density network (MDN) estimating the full conditional return distribution outperformed both parametric GARCH and historical simulation VaR methods by 22% on Kupiec test scores at the 99% confidence level.
The key architectural insight is that the ML model should predict the full quantile function of returns rather than a single VaR number. This allows risk managers to assess the entire tail distribution and calculate expected shortfall, stress loss, and other risk metrics from the same model output.
Stress Testing
Regulatory stress testing — required by CCAR in the US and similar frameworks globally — traditionally uses scenario-based approaches where predefined macroeconomic shocks are applied to portfolio models. AI enhances stress testing in two ways. Generative models (GANs and diffusion models) create realistic but unseen stress scenarios by learning the joint distribution of macroeconomic variables and asset returns. Causal ML models estimate the portfolio impact of novel scenarios by modelling the causal graph linking macroeconomic variables to asset prices, enabling what-if analysis for scenarios not present in historical data.
Model Risk Management
Financial institutions are increasingly required to manage model risk — the risk that an ML model performs poorly in production due to data drift, concept drift, or deployment errors. The SR 11-7 framework (and its international equivalents) established the standard for model risk management, requiring independent validation, ongoing monitoring, and documented governance processes. AI models introduce additional complexity because their performance depends on the training data distribution, which can shift without warning.
Production model monitoring systems now include automated drift detection (comparing training and inference distributions using population stability index or maximum mean discrepancy), performance degradation alerts (tracking AUC, precision, recall over rolling windows), and model retirement triggers. For a comprehensive guide to production ML monitoring, see our MLOps Production Guide.
Operational Risk Detection
Operational risk — loss from inadequate or failed internal processes, people, systems, or external events — is increasingly detected through AI. Anomaly detection on operational data identifies unusual trading patterns that may indicate errors or unauthorized activity. NLP on communications detects operational risks like impending employee fraud or undisclosed conflicts of interest. Graph analysis of organisational structures and communication patterns reveals concentration risk (single points of failure in key processes) and collusion risk among employees.
Regulatory Compliance (RegTech)
AI for AML and KYC
Anti-money laundering (AML) and know-your-customer (KYC) processes are among the most costly regulatory obligations for financial institutions. A typical global bank spends over $500 million annually on AML compliance, with the majority of cost coming from manual review of alerts generated by rule-based transaction monitoring systems. These rule-based systems generate enormous alert volumes — often 95-98% false positives — overwhelming compliance teams.
Machine learning models reduce false positive rates by 70-85% compared to rule-based systems while maintaining or improving true positive detection. The typical architecture combines a supervised model (trained on confirmed SAR filings) with an unsupervised anomaly detector (to catch novel money laundering patterns). In a production deployment at a large Asian bank, this combined approach reduced daily alerts from 15,000 to 2,800 while increasing SAR filing rate by 18%.
Transaction Monitoring
AI-based transaction monitoring considers multiple dimensions that rule-based systems cannot: temporal patterns (a series of transactions that individually appear normal but collectively suggest structuring); network patterns (transactions between apparently unrelated accounts that share common identifiers); and behavioural patterns (a deviation from the customer's established transaction profile). Graph-based features are particularly powerful: the distance between transacting parties in the customer graph, the degree of the transacting nodes, and the presence of circular transaction patterns are among the highest-signal features for AML detection.
Suspicious Activity Reporting and Regulatory Reporting Automation
When a suspicious activity is detected, the institution must file a Suspicious Activity Report (SAR) with the relevant financial intelligence unit. LLMs automate the SAR drafting process by extracting relevant information from transaction records, customer history, and investigation notes, then generating the structured SAR narrative. In production, LLM-generated SAR drafts require 60% less editing time by compliance analysts while maintaining the level of detail and regulatory compliance of manually drafted reports.
pipeline:
ingestion:
source: kafka_financial_events
schema_registry: avro
throughput: 50000 events/s
processing:
- stage: rule_based_screening
watchlists: ["ofac", "un_sanctions", "pep"]
- stage: ml_anomaly_score
model: xgboost_aml_v3
threshold: 0.85
- stage: graph_link_analysis
algorithm: label_propagation
max_iterations: 10
reporting:
format: xml_sar
auto_submit: false
review_queue: compliance_teamArchitecture for Financial AI
Real-Time Data Pipelines
Financial AI systems depend on real-time data. Market data feeds, transaction streams, and news feeds must be ingested, normalised, and made available for inference with minimal latency. Apache Kafka has emerged as the de facto standard for financial event streaming, with most major exchanges and financial data providers offering native Kafka integration. A typical real-time pipeline architecture includes: Kafka for event ingestion with Avro or Protobuf schema enforcement; stream processing with Kafka Streams, Flink, or RisingWave for feature computation; a feature store (Feast or Tecton) for serving pre-computed features to models; and an inference server (NVIDIA Triton or BentoML) for model serving.
Streaming Architectures and Low-Latency Inference
Latency requirements vary dramatically across financial AI use cases. Fraud detection requires p99 latency under 100ms from transaction receipt to score return. High-frequency trading operates at microsecond latency, using FPGA-based inference or highly optimised ONNX models on GPU. Regulatory compliance and credit scoring can tolerate seconds of latency. The architecture must be designed for the strictest latency requirement in the system and isolate latency-sensitive paths from batch workloads.
Model optimisation is essential for low-latency deployment. Quantisation (INT8 or FP16), knowledge distillation, and model pruning reduce inference latency by 2-5x with minimal accuracy loss. For trading applications, entire models are often compiled to TensorRT or ONNX Runtime with custom CUDA kernels. On the extreme end, FPGA-based inference for latency-sensitive trading achieves sub-microsecond inference times by implementing the model logic directly in hardware.
Security and Audit Trails
Financial AI systems are critical infrastructure and must meet the same security and audit requirements as any core banking system. Every model inference must be logged with a tamper-evident audit trail recording: input features, model version, output score or prediction, timestamp, requesting system, and authorised user. Financial regulators require that audit logs be retained for 5-7 years and be available for inspection within 24 hours.
Model security is a growing concern. Adversarial attacks against financial AI models — crafting transaction features that evade fraud detection, or generating market data that causes a trading model to make losing bets — are active threats. For a detailed discussion of AI security in financial contexts, see our article on AI in Cybersecurity: Threat Detection and Response.
For latency-sensitive applications deployed at the edge — such as in-branch fraud detection or ATM monitoring — see our guide on Edge AI: On-Device Machine Learning.
Challenges and Ethics
Model Explainability
Explainability is not optional in financial AI. Regulators demand it, customers deserve it, and model risk management requires it. The tension is that the most accurate models — deep neural networks, gradient-boosted ensembles, transformer architectures — are also the least inherently interpretable. Post-hoc explainability methods (SHAP, LIME, integrated gradients) provide approximations, but these approximations themselves can be unreliable. A 2025 study found that SHAP values from three different implementations varied by up to 40% on the same model and input, raising serious questions about relying on any single explainability method for regulatory compliance.
Bias in Credit and Fraud Models
AI models in finance can perpetuate and amplify historical biases. Credit models trained on historical lending data learn the discriminatory patterns embedded in that data — redlining, unequal access to credit, biased underwriting practices. Fraud models can exhibit bias if training data over-represents fraud in certain demographic groups. The regulatory response is increasingly aggressive: the CFPB has brought enforcement actions against lenders whose AI models produced discriminatory outcomes, even when discrimination was unintentional.
Mitigating bias requires intervention at multiple points: dataset construction (ensuring representative sampling and removing biased labels), model training (incorporating fairness constraints into the loss function), and post-processing (adjusting decision thresholds across groups to achieve parity in outcomes). For a detailed treatment of bias mitigation techniques, see AI Bias, Fairness, and Ethics: A Technical Guide.
Adversarial Attacks
Financial AI models are high-value targets for adversarial attacks. Evasion attacks on fraud models — crafting transactions that avoid fraud detection — are a documented threat. Poisoning attacks on credit models — injecting fraudulent data into training pipelines to manipulate model behaviour — are harder to execute but more devastating. Model extraction attacks, where an adversary probes a proprietary trading model to reconstruct its decision boundary, threaten intellectual property that may represent hundreds of millions of dollars in development cost.
Production defences include adversarial training (augmenting training data with adversarial examples), input sanitisation (detecting and rejecting inputs that appear adversarially constructed), model ensembles (reducing the impact of any single model's vulnerability), and differential privacy (limiting what an attacker can learn about model parameters).
Regulatory Landscape
Financial AI operates under a complex and growing regulatory landscape. In the US, the SEC has proposed rules requiring that broker-dealers using AI for trading or investment advice implement specific governance, testing, and transparency measures. The Federal Reserve and OCC have issued guidance on model risk management that explicitly covers AI and machine learning models. In the EU, the EU AI Act classifies credit scoring and insurance pricing as high-risk AI systems, subject to the Act's full compliance framework. In India, the RBI has issued guidelines on AI adoption in banking, requiring that AI systems be explainable, auditable, and free from bias.
The trend across all jurisdictions is towards stricter regulation of AI in financial services. Firms that invest in compliance infrastructure — explainability tooling, bias detection, audit logging, governance frameworks — will be better positioned for the regulatory environment of 2027 and beyond. For a complete guide to the EU regulatory framework, see our EU AI Act Compliance Guide.
Conclusion
AI is reshaping every vertical of financial services. Fraud detection systems powered by graph neural networks catch fraud rings that rule-based systems cannot see. Reinforcement learning agents execute trades with lower market impact than traditional algorithms. NLP models extract signals from earnings calls and regulatory filings at a scale impossible for human analysts. And machine learning is transforming how financial institutions manage risk, comply with regulation, and serve customers.
The institutions that will lead in this transformation are not those with the most advanced AI research capabilities. They are those that integrate AI into their core systems with the rigour that financial services demands: explainability for every decision, audit trails for every inference, bias testing for every model, and compliance built in from day one. Financial AI is not a technology problem with some regulatory constraints. It is a regulatory problem with technology solutions, and treating it as such is the difference between a compliance incident and a competitive advantage.
References
- J.P. Morgan. "The State of AI in Financial Services, 2026." J.P. Morgan Global Research.
- Federal Reserve. "SR 11-7: Model Risk Management Guidance." Board of Governors of the Federal Reserve System, 2011 (updated 2025 for AI models).
- European Commission. "Regulation (EU) 2024/1689: The EU AI Act." Official Journal of the European Union, 2024.
- RBI. "Report on AI in Banking: Recommendations and Guidelines." Reserve Bank of India, 2025.
- Chen et al. "Graph Neural Networks for Fraud Detection in Financial Networks." KDD, 2024.
- Zhou et al. "Temporal Fusion Transformers for Interpretable Multi-Horizon Time Series Forecasting." International Journal of Forecasting, 2024.
- Lundberg and Lee. "A Unified Approach to Interpreting Model Predictions." NeurIPS, 2017.
- Ribeiro et al. "Why Should I Trust You? Explaining the Predictions of Any Classifier." KDD, 2016.
- Securities and Exchange Commission. "Proposed Rule on AI Governance for Broker-Dealers and Investment Advisers." SEC, 2025.
- Araci. "FinBERT: Financial Sentiment Analysis with Pre-Trained Language Models." EMNLP, 2019.