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

What class should I use for representation of money to avoid most rounding errors?

Should I use Decimal, or a simple built-in number?

Is there any existing Money class with support for currency conversion that I could use?

Any pitfalls that I should avoid?

link|improve this question

65% accept rate
I always thought that currency conversion is just multiplication. – SilentGhost Sep 10 '09 at 17:55
2  
@SilentGhost: Yes and no. You have to keep in mind how are you going to use the values that you have. How do you do when you payed U$S2000 + AR$6300 + €1500 last year and this year you payed U$S4000 + AR$1200 + €500? There are many things that you have to take into account, so a Money object would need to save the historical value and current value. – voyager Sep 10 '09 at 18:13
Pitfall to avoid: using floating point numbers. See Office Space. – WTP'-- Dec 31 '11 at 12:12
feedback

4 Answers

up vote 3 down vote accepted

I assume that you talking about Python. http://code.google.com/p/python-money/ "Primitives for working with money and currencies in Python" - the title is self explanatory :)

link|improve this answer
That is what tags are for :) – voyager Sep 10 '09 at 18:08
Looking at code.google.com/p/python-money/source/browse/trunk/money/… I can see that they do use Decimal for internal representation :) – voyager Sep 10 '09 at 18:22
feedback

You might be interested in QuantLib for working with finance.

It has built in classes for handling currency types and claims 4 years of active development.

link|improve this answer
This project looks interesting, but may be a bit too much, I will most likely use a pure python project for simplicity. – voyager Sep 10 '09 at 18:25
feedback

You could have a look at this library: python-money. Since I've no experience with it I cannot comment on its usefullness.

A 'trick' you could employ to handle currency as integers:

  • Multiply by 100 / Divide by 100 (e.g. $100,25 -> 10025) to have a representation in 'cents'
link|improve this answer
3  
Many accounting systems track things far more precisely than to the cent. – Paul McMillan Sep 10 '09 at 18:05
True, but all depends on the needs I guess... The quantlib library referenced in this thread seems a good candidate for 'serious' financial work. – ChristopheD Sep 10 '09 at 18:23
feedback

Just use decimal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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