I glanced, and I found this handbook shallow and - in some areas - even bad advice.<p>E.g. If I ever see a monetary value stored in something else than integers I'm going to run away screaming (thank you Rust decimals represented as JSON floats). It's always integers unless you have a VERY good reason to do otherwise (though exported view can be in anything, even in weird bitcoded formats).<p>FX exchange. Resolution of FX isn't a point-in-time thing, things like buyer rate-in-time, seller rate-in-time, agreement, agreement tolerance, agreed upon resolution timestamp come in the effect.<p>Immutability - that's why you want to have event sourcing everywhere that touches money:<p><pre><code> # Resolved stream
A -> B -> E
# Actual stream
A0 -> Edit(A0, A) -> B -> C -> D -> Rollback(B) -> E
</code></pre>
Though in the end Fintech != Fintech. I worked at Fintech where money was treated like a baggage, and in other where money was a central point of everything.
What are you referring to with the integers/floats comment? The article says clearly that the rule of thumb is not to use floats and that they’re “almost never” a good idea, that they cause unpredictable precision loss, and recommends integer or BigDecimal types in multiple places. Are you also talking about rationals? So what is the bad advice here, exactly?<p>For FX, it seems like you’re reinforcing what the handbook says, that there’s no canonical rate. Aside from that, it’s talking about post-resolution records and you’re talking about how to resolve, no? That’s valid nuance of a separate goal, and it’s a fine goal of yours, but doesn’t seem like a demonstration of something missing or wrong.<p>The article appears to make the very same point about immutability? What are you saying that’s different?
With integers/floats, he's saying it's not opinionated enough. Anything other than integers with minor-unit precision, unless you have a very good reason, is a bad idea. So "floating point is almost a bad idea" doesn't go far enough, and the other alternatives are presented somewhat equally.<p>The FX critique is saying that it's glossing over a lot of the complexity. I'd say the same is true for the treatment of DE ledgers, and it borders on bad advice (e.g. "Balance is never stored. It’s derived from the movements of money.")
> Anything other that integers with minor-unit precision, unless you have a very good reason, is a bad idea.<p>The article clearly communicates this sentiment, no? What else needs to be said? How much further does it need to go, and why?<p>It might be a mistake for either us or the handbook to be absolute or dogmatic about floats. It’s not a sin to mention that they exist, and it’s a fact that some people in fintech use them for some reasons that have a defensible engineering position and well considered tradeoffs. I’ve been on the side of assuming people don’t use floats for money and then been surprised when I bumped into people here on HN who report using floats in finance routinely.<p>BTW, is your quote “almost a bad idea” a typo? There’s a world of difference between ‘almost a bad idea’ and ‘almost always a bad idea’. The actual words in the article, if we’re quoting the article, are: “almost never a good idea” in reference to using floating point types.<p>> it’s glossing over a lot of the complexity.<p>Of course it is, that’s a good thing. It’s not pretending to be a spec or rules, it’s an introduction and general principles. The article is already introducing new complexities that people outside of fintech might not be aware of. But do we really have to mention ALL complexity? The biggest problem with Wikipedia is that it’s overrun by nuance and complexity, so much that you often can’t read an article on a topic without already being an expert on that topic. This is why experts are often bad teachers. Being unable to gloss over some complexity is not good for learning and doesn’t make a good environment for newcomers. Let’s allow people to write for non-experts and make room for learning. We don’t have to avoid glossing over some of the complexity; it’s useful to get the general direction and gist correct while leaving out some of the detail.<p>> it borders on bad advice<p>Be specific. What’s wrong? Note that contributions are invited.
"Monetary value <i>must</i> be stored in integers" is the much stronger statement that the article doesn't make. Obviously there are exceptions, but you're going to need a much longer side discussion in order to justify why you're using floats.<p>It's like saying "don't write your own crypto algorithm". Of course write your own crypto algorithm, that's how you learn about cryptography. But you'd never put your homegrown cryptographic algorithm into production until after several PhDs worth of understanding of cryptography has been put into it by many other people.
For me quickly scanning over the article, the fact that floating points were even presented as a possibility was an immediate red flag. And I pretty much stopped taking the rest of it seriously.
> E.g. If I ever see a monetary value stored in something else than integers I'm going to run away screaming (thank you Rust decimals represented as JSON floats). It's always integers unless you have a VERY good reason to do otherwise (though exported view can be in anything, even in weird bitcoded formats).<p>That really overstates the issue. Whole domains of finance run just fine on doubles.<p>If you're doing Monte Carlo options pricing over interest rate paths, and you're interested in the risk metrics, like durations, convexity, vega, and so on, no one cares what your rounding convention is. doubles are just fine, thank you. How are you going to force `exp(-r<i>t)</i>cashflow` to be an integer? Or the normal CDF?<p>Yes, there are domains where ints make sense. But it's certainly not universal, you just need to make the right engineering choice.
It can be really frustrating viewing threads like this sometimes. I've not once seen an interest rate swap priced in anything other than float/double, and that's relatively simple even compared to some of the crazy instruments out there.<p>Like, sure, probably don't use floats for <i>everything</i>, but what are the odds that your greeks are gonna be nicely expressable as simple rationals?
Basically whenever you are acting as a custodian e.g., a bank. Then you have to be super careful.<p>No one cares if you’re mortgage calculator is off by a penny
I love how this sensible take is followed by a tornado of comments that boils down to "NEVER use floats JUST BECAUSE".
Never use floats for financial calculations. Because hard won experience.<p>"Floats" are simulations of Real Numbers, and Reals are uncountable. Not what you want for finance, where everything is counted.
It doesn't matter for quant finance to use floats because approximate is perfectly fine. Tracking the exact amount to accounting standards is the job of the brokerage team not the quant devs. Floats are fine for modeling as long as the numerical drift is accounted for.
[flagged]
That was the first thing that popped out and made me distrust the whole wiki; there's only One Right Way to store money (as integers[1], as you said) and it should have been explicit about that.<p>You can also use fixed-point if whatever you're using supports it but it's still technically integers.
> thank you Rust decimals represented as JSON floats<p>What do you mean? JSON doesn’t have floats, it has numbers, and how they’re used after being parsed is not part of the spec.<p>> If I ever see a monetary value stored in something else than integers I'm going to run away screaming<p>That’s good, then we’ll likely not be working on the same system :) I consider running from “amounts as integer” systems these days (but usually unfortunately can’t). In an idealized codebase that only seasoned financial programmers are allowed to touch, it can go well, but such a system is usually either overly exclusive or risks becoming brittle.
> JSON doesn’t have floats, it has numbers, and how they’re used after being parsed is not part of the spec.<p>I think that's the problem they were trying to describe. Without a formal spec, systems won't agree on how to handle floats. JS engines treat numbers as 53 bit signed floats, so passing a well defined decimal there through JSON means losing precision at the edges.<p>Money stored in integers gets around the issue by simple virtue of not really needing more than 53 bits to accurately represent the values anyone is going to encounter.<p>There are downsides like all the extra math or functions to handle doing the math everywhere money is manipulated or displayed, but this is the sort of thing where static typing is really helpful, and isn't too hard for juniors to understand that they should always use money functions to work with money data.
With I need to represent monetary amounts through JSON, I encode it as a base 10 string and wrap it in quotes so that the JavaScript engines treat it as a string. Conversion back to int happens after the string has been parsed and validated.<p>I do this with HTTP GET and POST form requests as well. In HTTP, everything is a string (even if that string is JSON).
> JS engines treat numbers as 53 bit signed floats<p>Please do not use Javascript for finance applications. Just do not do it<p>Save it for user interface elements and dancing whizzimagigs, where it will do less harm.
I'm sure there is something I don't know here, but how is working with integers "brittle"? The only issue I see is rounding down by default, not sure if that is even an issue or not. At any rate, it seems a lot less brittle than floats or bigdecimal style number classes.
> I consider running from “amounts as integer” systems these days (but usually unfortunately can’t).<p>In the context of Fintech, how do you otherwise resolve floating point rounding issues if not representing amounts with integers?
Native decimal types, if your system has them. Many languages and databases used in financial contexts do.
All of the data we control (in the database, in our apis, etc) is integer cents. When we have to interface with a system that represents money using JSON numbers as dollars.cents, we parse or serialize it into an arbitrary precision decimal type. Hasn't been much of a problem.
An integer for the value (scaled by number of decimals) and an integer value for the number of decimals. Different systems may use different values, even for the same currency or asset.
You can't do everything you need with an integer. There are values you might want to display or calculate with that are smaller than cents. In some places you'll need things like BigDecimal, which are immune to floating point errors in most cases.<p>It's also safe to return decimal values for displaying values.
The integer `1` can mean whatever you want, it doesn't need to be a cent. Haskell's `Fixed` type is a good example of this:<p><a href="https://hackage-content.haskell.org/package/base-4.22.0.0/docs/Data-Fixed.html#t:Fixed" rel="nofollow">https://hackage-content.haskell.org/package/base-4.22.0.0/do...</a><p>Its a wrapper around an `Integer` where you declare the scale in the type. So if you use `Fixed E2` as your type then `MkFixed 1` is 1 cent. If you did `Fixed E3` as your type then `MkFixed 1` is 0.1 cent. In both cases it is entirely an integer encoding.
Word of advice to anyone considering the "minor-units precision" strategy for representing monetary amounts: Don't (or at least, don't use it as an interchange/API data format).<p>It seems like a clever idea (fast integer math, no rounding problems for addition and subtraction), but it'll bite you incredibly hard if you ever stumble upon an edge case such as working with a partner that has a different implied number of digits for a given currency. This is especially relevant for stablecoins, which often have a different number of implied decimal digits than the "fiat" currency they represent.<p>Also, consider representing amounts as a string type in JSON-based APIs. JSON does not specify decimal precision, so you (and all your users/vendors) will always have to make sure your parser/serializer doesn't internally lose precision by going via floating point. This can get ugly fast, and while a string seems conceptually less neat, it completely bypasses that problem. (Some will call this an anti-pattern [1], but I'd rather not fight this particular battle for ideological purity on the shoulders of my users or shareholders.)<p>[1] <a href="https://blog.json-everything.net/posts/numbers-are-numbers-not-strings/" rel="nofollow">https://blog.json-everything.net/posts/numbers-are-numbers-n...</a>
The only real correct solution here is to send mantissa and exponent as two separate integers. It's trivial to convert between exponents for whatever math you want, it can be as correct as you want, and is unambiguous.<p>In the HFT space you save some wire space if you can commit to a consistent exponent for some {slice} up front (think instrument/tick-size/asset-class/exchange/feed/server/whatever/...) such that you only need to send the mantissa and your clients can have a hard coded exponent. However, in similar spaces it's often worth the extra uint32 to send a on-the-wire exponent such that things _can_ change and you aren't hamstrung later by earlier "we only need cents now!" design choices when, e.g., you suddenly need to support bitcoin/... prices to full precision. (your users will thank you when they don't have to coordinate a breaking change when you want to adjust your fixed exponent)
If you do that though aren't you just reinventing floating-point?
No, standard floating point implementations have higher precision for smaller numbers than larger. So for example, in a 32bit float, there are far more numbers between 0-1 than there are between 1,000,000 and 1,000,001. For 32bit floats, you start lowing whole integers with relatively small numbers.<p>Integers have a consistent precision across the entire number line.
No, because you're doing decimal floating point, which eliminates the rounding errors of binary floating point.
> The only real correct solution here is to send mantissa and exponent as two separate integers.<p>That’s essentially the same thing as a String-serialized big decimal, just less readable, no?
Having done HFT / low-latency in C++ with a browser based (read: JavaScript) management front-end: Go ahead and use integer cents everyone. It’s practically an industry standard and it works just fine. Anything else is a worse compromise.
It is fine as long as you don’t cross any edge cases (crypto, or more recently stuff like AI token pricing) and don’t forget to account for third party quirks (e.g. Stripe’s zero-decimal currencies: <a href="https://docs.stripe.com/currencies#zero-decimal" rel="nofollow">https://docs.stripe.com/currencies#zero-decimal</a>).
If someone sells you 12345.55 EUR vs USD at a rate of 1.12345, how many EUR do you think you end up with? Do you think all market participants even agree? What if the rate is 1.123456?<p>For added fun, you can introduce division. Some systems will allow you to sell 12345.55 <i>USD</i> to buy EUR at a rate of 1.12345.<p>The article’s “no lost data” tenet is not really viable when this sort of division is involved. Are you going to track your account balance is a rational number with an absolutely immense denominator forever?
Of course market participants agree?<p>Exchanges have calculation rules for every type of mark and payment and will always specify rounding.
You store the sums on either end, the currencies, the exchange rate and the final sum? No one has .0000145 cents in their account. Rounding occurs in the real world.
> You store the sums on either end, the currencies, the exchange rate and the final sum?<p>There is a remarkable amount of disagreement as to whether one should do one’s back office work based on the price or based on the quantity of the counter currency.<p>> No one has .0000145 cents in their account. Rounding occurs in the real world.<p>Indeed. But you either need to convince all parties to agree to round the same way or you need to accept small errors
My experience in consumer banking says that every instrument specifies the precision of the calculation, how and when rounding happens, and slew of
little details.<p>So, yes, everyone has to understand how all their partners are doing rounding and summing.
In certain areas of the institutional finance world, everyone seems to accept that everyone's math is allowed to differ by a few cents, and they tally up the errors and move on with their lives.<p>I would, however, by quite surprised if my personal bank account did this.
If you’re only trading in USD and other two-decimal currencies it can work fine, yes. For anything else, it’s much worse as also detailed in TFA.
Agree with this, working from HFT to payments to account management in the past.<p>You can have the blockchain team be an expert in converting integer cents, or the forex team be an expert in sub-cent conversions. You don't want to require _every team_ to have expertise in float math, by default.
> but it'll bite you incredibly hard if you ever stumble upon an edge case such as working with a partner that has a different implied number of digits for a given currency<p>Why would that be a problem? You just transform the values when interacting with their API.
Exactly, model is in integers and representation can be 1⃣3⃣ or whatever, that's why model-view separation exist.
Sure, you can do that if you can absolutely guarantee that everyone will always respect that separation and there will never be ambiguity between your internal and some partner's representation – even during incidents, even during low-level CSV-to-DB ETLs during incidents ("just one time, I promise, we don't have time to build the proper adapter, but look how similar their and our formats are").
Because a lot of the time there won’t be any error when you’re wrong, just silent data loss.
Customer was charged $0.995 after fees, how to represent in your data model with integer cents?
You'll have to decide when and how to round. Keeping individual billing items at high precision and rounding after summing them up can work; defining and documenting a rounding policy (or complying with whatever's legally required in your jurisdiction/domain) and rounding each individual billed item can as well.
Currency: USD
Amount: 99500
Decimals: 5
You use 1/1000th or 1/10000th or whatever you need. You do not need “cents”.
Round it up
Sure, but are all your (and your users' and vendors') engineers and LLM agents going to remember that? When in doubt, always be explicit.
I think I’m agreeing with you whole-heartedly if I say that article’s conclusion is at best extreme and unrealistic when it says “the parsers need to be fixed. They should support extracting any numeric type we want from JSON numbers and at any precision.”<p>This sounds like an unreasonable position to take. “Any” is an unachievable standard that could require an unlimited engineering budget with no demonstrable value in practice.<p>It is good to identify the lack of a standard, and to talk about what parsers do in practice, and good to discuss the gaps and unmet use-cases. It would be a good idea to suggest that there should be a more reasonable standard, perhaps. It’s just not a good idea to demand that everyone support “any” possibility when no one really needs that, no one knows what it means, and it’s not actually possible to achieve.
What do you recommend instead? Standard floating-point ("float"/"double"), fixed-point arithmetic with thousandths (or smaller) of the minor unit, arbitrary-precision decimal numbers, or something else entirely?
I think what matters most is your database and API representation, as well as having consistent and well-defined rounding rules.<p>I largely agree with TFA: Round explicitly and consistently whenever you cross a boundary, i.e. database persistence and internal API calls.<p>Use whatever works for your required business case internally (i.e. inside of procedures calculating some function of one or more input amounts). This can be regular old floats/doubles if you absolutely know what you're doing, or BigDecimal if you aren't and would rather suffer slightly slower performance than having to talk to an auditor about IEEE 754 rounding modes, or even minor-amount integers (yes, even though I just said to not use them – but you'll want to ABSOLUTELY NEVER leak them outside of your system, including your data/analytics pipeline, which might have different ideas about financial amounts than your business logic implementing a nice custom monetary type).
A string type. As parent says: <i>it completely bypasses the problem.</i> Save the numbers between double quotes and be done with it.
Except that now you have a new problem: Opinionated theorists that haven’t been part of a nasty “oh no, we accidentally considered some amounts as 10x/100x/1000x larger/smaller than expected” incident in their career yet…
Storing numbers as arrays of u8? That doesn't make sense
For JSON serialization, which doesn't support fixed-point precision it does.<p>Floating-point precision has too many gotchas for being suitable to store Decimal types, especially for the Currency use case.
It makes a lot of sense if you value correctness over performance.
Do not throw away any precision in finance/money computation, regardless what/ how you are doing it.<p>In C# e.g., there is type decimal for those computations.
Floating point value stored multiplied by 10^8. That gives you a huge integer, but it's extremely accurate, especially for US denominated currencies. Easily transformed into floating point numbers for reporting/etc.
What is with this Twitter esque style of discussion? Post some vague comment with no real stake in the ground, but just reply to follow ups asking for clarifications about the right way. It's exhausting. Why not put all that effort into the initial comment?<p>Vague-posting seems to becoming more popular
If there were a simple one-size-fits-all solution to these problems, there wouldn't be a need for a handbook, nor for a discussion, would there?<p>I can't design everybody's systems here, but I was hoping that sharing some war stories that have cost me days or weeks of work might sensitize somebody to a few non-obvious footguns.
As a programmer, what I feel when I see fintech programmers each speaking from their own different experiences and perspectives is that it makes me wonder what it really means to be good at programming.<p>What user xlii said about not storing monetary amounts as floats is a common IEEE 754 issue. And while it's true that financial tracking should be done through immutable logs or event-based records, I don't think every surrounding service needs to be built with event sourcing. I think it's enough to apply it only to core logic like ledgers, settlements, orders, and executions. Looking at xlii's comment, it seems like a technique that only becomes viable when the modeling is successful.<p>User lxgr's comment points out that it's a minor-unit issue. If JSON numbers are parsed as floats by the language or parser, precision can be lost. Usually people send values with a separate decimal places field. However, I've heard that in HFT, they don't do that because the overhead itself is too costly.<p>And antonymoose's comment aligns with what many books say. That's why designs like this are common in FX or API contexts. It feels like protocol design, doesn't it?<p>Putting it all together, everyone's right within their own domain. While I think it'd be great to have someone like xlii as my senior programmer, I also feel like I wouldn't be able to design such a complex system myself. In that sense, everyone's statements are valid, and it's interesting to see how opinions diverge depending on the domain. Is this what expertise looks like<p>Looking at all this, it seems like you can roughly infer where a programmer is coming from based on their experience. Sometimes programming doesn't feel like finding the right answer, but more like choosing a worldview<p>Watching how programmers model their domains on HN is always fascinating. Sometimes I click on their profiles and add their domain knowledge to my own personal wiki, thinking I might use it someday
Fintech/finance is a very big industry and there are a lot of sub-domains. A HFT system programmer thinks about how to colocate their prod machines in NYSE and use zero alloc techniques to ingest marketdata as fast as possible, while a crypto wallet app developer spend more time designing cool UI to attract users and working out all the L1/L2 quirks. And I'm sure they have very different answers to whether to use integers and how many digits to preserve
A good programmer is just a bad programmer who’s learned not to make the same mistake twice. That’s part of expertise and why it differs too, everyone has made a different set of mistakes, domain-coded.
I would like to hear more about this wiki you have.
Nice. The book contains a bunch of good information that could already be found elsewhere but collecting it is quite practical. I highly suggest to read Kleppmann's Designing Data-Intensive Applications. The first edition was very good, a second one came out recently.<p>I was CTO of a FinTech where I built the whole software stack from scratch: the lessons in the book are mostly correct. I say mostly, because as always, there is a lot of "it depends" to take into consideration for your particular project. For example, I chose to <i>not</i> use event-sourcing to avoid the whole state computation issue. A standard append-only audit trail can do the job.<p>You can't guarantee exactly-once delivery but you can construct effectively-once processing, and that is what you really want.<p>Store every request and response : absolutely, and not only when consuming APIs, but when collecting <i>any</i> information from the outside world (and, if you can, also log every intermediate transformation step within your perimeter). Content-adressed buckets + a relational table are great for this.<p>The text also does not mention anything about data lineage. What happens if a vendor updates some data mid-day that you absolutely <i>need</i> to be aware of? You need to be able to account for that, while also re-playing computations that used the old values and get the same result. It's not a particularly hard problem to solve, but it takes some thought.
All this debate about floats or ints or decimals, obscures the fact “reconciliation” is an essential part of dealing with money - essentially some separate implementation of the money movement that detects when your rounding strategy or floats end up creating or destroying money, but all the accounts balance at then of the day.
I think most of this applies to software engineering generally, not just fintech.<p>For example the parts talking of retries, idempotency, event ordering, etc. This applies to all systems that require any degree of accuracy, even if no money is directly involved. I've seen so many systems built on the assumption that "we can always retry", but you can only retry if you fail cleanly in the first place, and if the downstream system offers the same level of idempotency that you think it does. Quite often these are not put to the test.
I agree. Very little in here specifically applies to fintech except the ledgering and rounding parts, which are pretty light.<p>I would prefer to read a defense of something more radical like "database per account." Something that has unique tradeoffs within fintech.<p>Also, the main advice I would give to fintech engineers/founders is to take risk and compliance seriously from day one.<p>Financial systems are based around trust. If you don't provably mitigate risks you will lose trust and, eventually, your entire business.
[dead]
> even bad advice<p>That's putting it politely. Honestly, I think this "handbook" was mostly written by an LLM.<p>For example, in the immutability section we have this:<p><pre><code> "Separating PII from financial data lets you honor erasure without losing the financial history you’re obliged to keep."
</code></pre>
In a financial organisation the two go hand-in-hand for obvious KYC/AML reasons.<p>Keeping the financial data whilst trashing the customer names, addresses etc. instantly on-demand before the expiry of the relevant time periods is going to leave your entire organisation with a very bad day in the office if a $lawful_body comes knocking for the data to trace a crime.<p>People going to work in a Fintech should not be relying on a random "Handbook" written by an unknown person in an unknown jurisdiction.<p>People going to work in a Fintech should only ever work in accordance with their employer's internal handbooks/guidelines/etc which will have been written in conjunction with their firm's lawyers and compliance people to ensure it complies with the laws and reporting requirements in the jurisdiction(s) in which their employer operates.
> Keeping the financial data whilst trashing the customer names, addresses etc. instantly on-demand before the expiry of the relevant time periods [...]<p>Where does TFA recommend that?<p>As I see it, it recommends <i>separating</i> PII data you'll eventually have to delete from that you'd probably want to keep forever (including data factoring into your accounting equations/invariants), so that you can delete the former <i>after</i> the relevant recordkeeping periods have elapsed.<p>> People going to work in a Fintech should not be relying on a "Handbook" written by an unknown person in an unknown jurisdiction.<p>Sure, but they should also not blindly ignore any ideas and practices presented, or avoid looking beyond their own organization. Ideally, they'll then try to reconcile what they saw with their own knowledge and local regulations etc.<p>> People going to work in a Fintech should only ever work in accordance with their employer's internal handbooks/guidelines/etc which will have been written in conjunction with their firm's lawyers and compliance people to ensure it complies with the laws and reporting requirements in the jurisdiction(s) in which their employer operates.<p>Sure, in a world in with only perfect and error-free organizations, that seems like a reasonable approach. But how does one get there without having a conversation such as this one?
> any ideas and practices presented<p>Unless its your job to architect stuff, in a financial firm you don't go looking around for ideas and practices.<p>You comply with your employer's practices end of story.<p>If you like looking up ideas and other people's practices then a heavily regulated environment is probably not the place for you.<p>> how does one get there without having a conversation<p>"having a conversation" about new ideas/practices in a regulated firm will involve lawyers and the compliance department.<p>More than likely that "conversation" will be above most people's pay grade. So you're better off just not wasting your time and adhering to your employer's existing practices.<p>And for everyone else, its an expensive and high-friction conversation to have if you want to change existing practices.
"Not thinking, just complying" isn't the panacea for good outcomes you make it out to be. You definitely want to limit the amount of excitement, but I've seen many issues caused by legacy formats and practices as well.<p>> You comply with your employer's practices end of story.<p>What if you're the employer ("first engineer" etc.), and there are no practices yet? Fintech almost by definition sometimes includes doing things from scratch because some existing solution or incumbent organization isn't working that well anymore.<p>> Unless its your job to architect stuff<p>Which seems to be the target audience/scenario for TFA.
> What if you're the employer ("first engineer" etc.), and there are no practices yet?<p>In that scenario the practices will still come first. You're not going to be doing any coding or systems engineering until you've got compliance signed off. You're going to be spending lots of time with lawyers and compliance people.<p>> Fintech almost by definition sometimes includes doing things from scratch<p>Yes, but cut through the noise of the typical Fintech fancy website and app and you're still staring straight down the barrel of spending 80% of your time on regulatory compliance.<p>Try as you might there are only so many ways you can re-invent the wheel for dealing with hard-facts legislation.
Please show me the regulation that tells me whether to use big decimals or integers in my internal monetary amount representation. Regulations usually care about outcomes (sometimes high, sometimes low level); they often don't tell you how to technically achieve them.<p>And if your lawyers and compliance people are actually telling you that you can absolutely not do any financial processing yourself, that the only possible way to be compliant is to license <incumbent product xyz> (unfortunately only available in COBOL) etc., you might not actually be working in a fintech, or at least not in the kind this guide seems to be targeted to.<p>Frankly, this kind of attitude is exactly why banking and payments is as fossilized as it is in some countries, and why fintech is eating their lunch in many cases. There has to be a balance between trying new things and doing what everybody else is already doing.
This sounds great until your counterparties, banks, the government, customers and others complain bitterly that your monetary amounts are off.<p>Your expectations of course are not unusual because so many developers work on systems where users are not the customers, but the product.<p>Facebook, Insta, Google all fuck up results very regularly, but what are you gonna do when they do?<p>Now imagine your bank occasionally losing deposits, your account balance going up and down a percent or two every day, the IRS fining you for tax evasion because your Cool Fintech Rounding does not match generally accepted accounting rules.
The idempotency keys section alone is worth the read most devs learn that lesson the hard way.
I just wish the financial industry itself had known about these when the core banking systems and financial communication protocols of the 60s and 70s were invented that are still being used to this day...<p>Many of these predate the widespread knowledge of idempotency, so often idempotency keys are hacked together by joining various, hopefully globally unique fields, except that they never quite are. (You can look behind the curtain sometimes, e.g. when your bank does not let you transfer the same amount to the same recipient account on the same calendar day.)
100%. It deserves more detail, too.<p>I've spent many hours explaining how idempotency is supposed to work, and why it's important. Most teams understand the need for it, but very few thought about it up front.
Also audit trails. Good audit trail can save company (and you) in emergency as well. Useful for debugging and last resort of compliance data source.
A Plaid balance check is NOT a guarantee that the ACH debit you're about to submit will go through.<p>I don't care if the balance is one million, before that ACH can process, every single dollar can be (a) wired out, (b) cleared out by <i>yesterday's</i> ACHs (bills, autopay, whatever) and checks, or (c) spent at debit/ATM.<p>I probably shouldn't tell you why I know that some fintechs don't address this.
I think this is covered by the "overdraft" section, if the only way to know for sure is to just submit it.
It's a good indicator but absolutely no guarantee. I've had to tell project managers this because they didn't understand this concept.
Anyone know of resources like this but for capital markets? Things that would allow engineers new to trading equities, options, FX, bonds, and commodities to learn about different flows, market structure, common architectures, and other things that normally you learn from years of experience.
Equities and (listed) commodities are relatively easy to get a handle on but it genuinely takes months / years even at the frontline to understand how fixed income and FX works because its still almost entirely an OTC market. There is more central clearing than ever before but e.g. if I (say) buy a bond, fund it using a repo, swap my loot back some other currency, quite a lot of this could easily still be relying on humans pressing buttons and wiring money around.<p>To learn how and why these things are traded, however, read this book, the only (good) truly beginners guide to fixed income:<p><a href="https://www.jdawiseman.com/books/pricing-money/Pricing_Money_JDAWiseman.html" rel="nofollow">https://www.jdawiseman.com/books/pricing-money/Pricing_Money...</a>
"Trading and exchanges" is the classic one everyone reads for listed markets, I should add.
I have just left a fintech company after 5 years and I can say after reading this, it looks legit to me (not AI slop as someone asked). These are the same sort of lessons I learned during my time in the industry.<p>I would recommend anyone starting in fintech to take some time to understand accounting principles and the ledger in a bit more depth than just debits vs credits - this is likely what is most unfamiliar to programmers.<p>Also financial software is very data-heavy and I learned more about databases in my time working in fintech than the 15 years before that. I think going into a bit more detail about even the basics (indexes) will save a lot of headaches.
> I would recommend anyone starting in fintech to take some time to understand accounting principles and the ledger in a bit more depth than just debits vs credits<p>Probably good advice (for <i>everyone</i> in fintech, not just programmers) considering the absolute disaster that happened at Synapse. Kind of wild nobody has gone to jail for that.
> I would recommend anyone starting in fintech to take some time to understand accounting principles and the ledger in a bit more depth than just debits vs credits<p>Any good resources you would recommend to learn more about this?
I've seen a few attempts at "accounting for programmers" guides, some of which I came across while browsing HN (if you search you'll find plenty). The one I used to send new developers was one such guide[1]. They also have another on building a ledger[2]. These are a good start and I wish I could recommend a proper textbook that goes into more detail - detail that I wish I had known early on - but I learned mostly as I went along.<p>[1] <a href="https://www.moderntreasury.com/journal/accounting-for-developers-part-i" rel="nofollow">https://www.moderntreasury.com/journal/accounting-for-develo...</a><p>[2] <a href="https://www.moderntreasury.com/journal/how-to-scale-a-ledger-part-i" rel="nofollow">https://www.moderntreasury.com/journal/how-to-scale-a-ledger...</a>
The whole avoid floats thing just isn't true. I have 20years experience in fintech and most of it used doubles. Excel uses doubles. Your frontend will use doubles. All your db supports doubles. Your stdlib knows how to parse doubles. Json uses doubles (not in theory but in practice). Many ERP system uses doubles<p>The thing for working with currency with doubles is that you have to keep in mind that it can hold 15 digits of precision in total. As long as your numbers don't use more digits than that, like 123456789.01 or 123.456789, you can have perfect decimal precision in your financial math. You just have to always round the result to within 15 digits of precision after each computation, and before each comparison. That's what excel does.<p>The biggest advantage of doubles is that 1) they're widely supported and 2) you can mix different precision in your system, which will appear if you do international finance or advanced financial products. Some accounting require precision up to the thousandth, some need to be rounded to multiples of 0.25. So at the end of the day you'll never use basic math but some specialised accounting math library and that library can perfectly use float as a backend.
Similar style and message to <a href="https://shapeofthesystem.com/" rel="nofollow">https://shapeofthesystem.com/</a>
"Fintech" is extremely broad, and most of what gets called "Fintech" is really communication. Communication between firms, between traders, between systems, between ledgers, etc. There is no industry-wide "right" way to program anything, because the right way is ultimately whatever way the other party you're communicating with will understand.<p>If you're dealing with a party who tracks currency in cents, then tracking currency with more precision than that is going to lead to rounding disagreements. Vice versa if you deal in cents but they deal in tenths of cents. And so on for all the other advice in this document.
Does anyone have more learning resources in this field? Any model implementations, pet projects, anything to get going?
I don’t work in fintech (yet) but I’ve studied finance recently and quite a lot of these pieces of advice are just intuitive when you know the business domain. Learning the “customer” of your software helps too
Does fintech here mean "crypto" and central bank currencies transactions?
> For whom?<p>It's refreshing to see someone using the correct phrasing.<p>The often-seen, stupid way is 'who is this book for'.
First half didn’t sound so bad.
Thank you. It came at a much needed time.
Thank you so much for this. It came at the needed time
> Webhooks are the most common way to receive signals from external systems, but processing them safely is not trivial<p>I see webhooks documented all the time, but I have yet to use them in practice, nor have my customers requested them. Is the above not true, or are they widely used in some sectors and not others?
In payment gateway integration, webhooks are usually considered a single source of truth for updating the payment status, with status check api as a fallback.
They are indeed everywhere, but it's possible you don't have a need for them. For example, every time you buy something online using Stripe, the seller receives a webhook indicating that a purchase was completed.
I receive webhooks all the time as ack that something was processed/ or a notification of the status of some sort of thing in an external system that we don't control.
[flagged]
[flagged]
[dead]
[flagged]
Hey, author here. Happy to take feedback or answer questions.<p>P.S. I have no clue how HN works, I posted it myself yesterday and it got 6 points. ¯\_(ツ)_/¯
Anyway, glad for the reach.
Sorry have to ask these days. Is this carefully written down information from years of experience in the field or AI slop?
Appears that the author got some help organizing the document, but wrote it all themselves.
Hey, author here :)<p>Its at least 80% organic artisanal writing and maybe 20% AI when I needed help with grammar, completeness, broader perspective and everything around.
It may be a good idea to start the book with a really short "About the author" to state exactly this and your work experience. Otherwise looks well written to me, good job! :)
Native English speaker. I scanned it and IMO there's a slight overuse/misuse of hyphens. Maybe the AI tool could be asked to identify and correct? (The hyphens might be triggering people to think it's AI, too).<p>They mostly need replacing with a full stop or a colon.<p>E.g.<p>"In practice this means storing the amount as an integer in its smallest unit - €12.34 becomes 1234"<p>-><p>"In practice, this means storing the amount as an integer in its smallest unit: €12.34 becomes 1234."<p>or<p>"In practice, this means storing the amount as an integer in its smallest unit (e.g., €12.34 becomes 1234)"
I worked for a few years in consumer banking, and this looks like solid advice.
Whilst I wouldn't say anything in it requires years of experience to know, this would be helpful for someone who hasn't considered anything about monetary systems. It doesn't read like slop, but I could be wrong but even so it all seems fairly reasonable (I've only fully read about 50% before realising there's nothing new here for me, and then skimmed to rest).
Skimmed it and based on my experience in fintech, it looks good, accurately represents the real world. I guess there’s still a chance it is AI generated but it doesn’t seem like vacuous slop, it has substance!
from the author's mastodon post [0]<p><pre><code> I just published Fintech Engineering Handbook distilled from 6 years of tears, sweat and swears.
It’s a free ~25-page resource with various hints and patterns around handling money.
Tell me what you think!
</code></pre>
other than that, peruse the commits on the source [1], or wait for the author to respond.<p>[0]: <a href="https://mas.to/@krever/116814803588993437" rel="nofollow">https://mas.to/@krever/116814803588993437</a><p>[1]: <a href="https://github.com/Krever/fintech-engineering-handbook/commits/main/" rel="nofollow">https://github.com/Krever/fintech-engineering-handbook/commi...</a>