up vote 11 down vote favorite
3
share [g+] share [fb]

I'm looking for a fixed-point standard to use for financial data, do you know any that is worth trying? Do you have any experience on the performance of that hand-made fixed-point classes?

link|improve this question

68% accept rate
feedback

5 Answers

I use my fixed point math class. It is designed to be more or less a drop in replacement for floats/doubles. http://codef00.com/coding

Note, the code on my site is for an unsigned fixed point number, if you want signed, just change the uint[N]_t types to int[N]_t types.

link|improve this answer
feedback

Dr.Dobb's has an article about a possible implementation of fixed-point arithmetic type in C++. Check this out.

link|improve this answer
feedback

Here's a really simple and functional implementation.

link|improve this answer
feedback

Ouch. Financial systems are tricky, your main problem is not fixed point math, the problem are the rounding errors.

You can have a nice spreadsheet full with maverlous calculations with discounts by client type and VAT included. You make a total, you present it to an accountant and he says the values are all wrong. The reason: The output may be formated with only 2 decimal places but internally the value has all the decimal places of a float or double. and they do add up.

You need to know your financials and decide where the base values will be. Meaning what values are the ones the accountants will check (yes it requires business knowledge, hance the 'tricky' part).

The before you save the value to a persistent form (database, file, memory ...) you truncate the extra decimal places that multiplications and divisions may have added.

Quick and dirty solution for N decimal places: ((double)((int)(Value * N * 10.0)))/10.0

Of course you need to check exactly which kind of rounding do your financials require.

link|improve this answer
Your "Quick and dirty solution for N decimal places" should involve 10^N. – Tom Sirgedas Mar 11 '11 at 16:44
feedback

IBM's decNumber++

link|improve this answer
1  
it appears that decNumber++ is all about floating-point, not fixed-point. – Ben Collins Sep 24 '09 at 19:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.