AcademyPython stores numbers as either exact integers or approximate binary floats, and this distinction matters deeply in finance. Learn how type coercion works, when float precision breaks down, and the defensive patterns that keep your calculations honest.
Python's integers and floats look similar but behave differently, and mixing them carelessly leads to silent errors in financial calculations. Learn how to handle numbers correctly, when to use Decimal for money, and the pitfalls that catch most practitioners.
Matplotlib, Seaborn, and Plotly each suit a different moment in the treasury and risk workflow. This post shows you which to reach for using worked examples including yield curves, HQLA correlation heatmaps, and cash flow waterfalls.
A practitioner's walkthrough of the LCR, from HQLA tiers and haircuts to run off rates and the inflow cap, with a worked example you can trace line by line. By the end you can read your own PRA110 return, not just quote the headline percentage.
Data types are the foundation of every Python calculation in finance. Learn the four types you use daily, how to convert between them, and how to spot the silent errors that break balance sheets.
Alteryx Designer is a visual workflow tool that turns repetitive data preparation into a repeatable, auditable process without requiring code. This guide explains what it does, how it compares to Excel, SQL, and Python, and whether it is worth learning for Finance and treasury teams.
Liquidity risk moves in hours, and no single team holds the full picture. Here is who runs the position, who challenges it, who signs off, and why coordination is the real control.
Transactional leadership gets dismissed as cold or mechanical, but in treasury and regulatory reporting it is often the most professional thing you can offer your team. This post explains what it actually is, where it earns its place, and where you need to add something else.
Constants prevent silent bugs, make regulatory thresholds explicit, and transform magic numbers into readable code. Learn how to use them properly in finance calculations.