Hi, I'm

Marcel-Philippe Metzger

|

My background spans quantitative finance, machine learning, and statistical modeling. Passionate about bridging the gap between data science and financial decision-making.

market_signal.py
import torch
import torch.nn as nn

class MarketSignal(nn.Module):
    def __init__(self, dim=64, heads=4):
        super().__init__()
        self.lstm = nn.LSTM(dim, dim, batch_first=True)
        self.attn = nn.MultiheadAttention(dim, heads, batch_first=True)
        self.head = nn.Linear(dim, 1)

    def forward(self, x):
        h, _ = self.lstm(x)
        context, _ = self.attn(h, h, h)
        return torch.sigmoid(self.head(context[:, -1]))

# >>> model.predict(asset='MPM')
# {'confidence': 1.00, 'signal': 'STRONG_BUY'}
Scroll

01. About Me

Welcome! I'm Marcel-Philippe — currently a trainee in Finance & Risk, fascinated by the intersection of financial markets, data analysis, and algorithmic decision-making.

Continuously developing my skills in quantitative methods, Python programming, and statistical modeling. My goal: building robust, data-driven trading strategies and solving complex financial problems with analytical precision.

Outside of work, I dive deep into machine learning applications for financial markets, time series analysis, and backtesting frameworks.

0 Projects
0 Technologies
0% Commitment
Marcel-Philippe Metzger

02. Experience

Finance & Risk Trainee

@ Santander
Mar 2025 - Present

Asset Based Finance

  • Contribution to ongoing ABS transactions, including automation of cashflow and waterfall reports

Risk Modelling

  • Analysis and documentation of credit risk models for internal and external auditors (SAS)
  • Statistical validation of scorecard applicability (HCBE)
  • Development of automated scraping tool with GUI and analysis dashboard for dealer verification (Risk Execution)

Regulatory Information

  • Analysis and preparation of regulatory data for regulatory requirements (SQL, Python)
ABS Risk Modelling Python SQL Data Pipeline GUI

Data Science Intern

@ Deutsche Bundesbank
Aug 2024 - Feb 2025
  • Development of end-to-end scraping and data pipeline for automated processing of annual financial statements
  • Built LLM-based classification model for industry classification of companies (local LLM, API-based)
  • Fine-tuning of deep learning model for extraction of location and geodata from company reports using self-annotated data
Research Contribution Co-authored data pipeline for GeoCSR: Leveraging Geospatial Data from Corporate Reports for Sustainable Finance Insights — in collaboration with LMU Munich and University of Oxford.
Supporting Research Contributed to the data pipeline for the GIST Project (Greenhouse Gas Insights and Sustainability Tracking) — a collaboration between Deutsche Bundesbank and LMU Munich.
NLP LLM Fine-Tuning Web Scraping Deep Learning

Teaching Assistant

@ University of Mannheim
Sep 2022 - Jul 2023
  • Tutor for Linear Algebra 1 and Linear Algebra 2A at the Chair of Algebraic Geometry
  • Held weekly tutorial sessions for groups of 20+ students
  • Grading of exams and weekly assignments
Teaching Linear Algebra Communication

M.Sc. Mathematics for Business and Economics

@ University of Mannheim
Sep 2021 - Nov 2023
Thesis Cryptography Based on Ideal Lattices

Exploring ideal lattice structures for secure post-quantum cryptographic systems

  • Relevant Coursework: Mathematical Finance, Derivatives, Investments, Game Theory, International Asset Management
Finance Algebra Cryptography

03. Skills & Technologies

Quantitative Methods

Statistical Modelling Time Series Modelling Risk Modelling Backtesting Mathematical Finance

Programming & Data

Python SQL SAS HTML scikit-learn PyTorch TensorFlow Hugging Face NLP (spaCy) Model Fine-Tuning Web Scraping BeautifulSoup Selenium GUI Development

Tools & Platforms

Git / GitHub Docker VS Code Jupyter Notebook CLI

05. Contact

Let's connect!

I'm always open to discussions about exciting projects, career opportunities or quantitative finance. Feel free to reach out!