vote up 3 vote down star

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?

flag

75% accept rate
I always thought that currency conversion is just multiplication. – SilentGhost Sep 10 at 17:55
@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 at 18:13

6 Answers

vote up 3 vote down check

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|flag
That is what tags are for :) – voyager Sep 10 at 18:08
Looking at code.google.com/p/python-money/… I can see that they do use Decimal for internal representation :) – voyager Sep 10 at 18:22
vote up 3 vote down

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|flag
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 at 18:25
vote up 3 vote down

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|flag
3  
Many accounting systems track things far more precisely than to the cent. – Paul McMillan Sep 10 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 at 18:23
vote up 1 vote down

You will definitely want to be using floats to store both the amount of money and the exchange rates; in general exchange rates go out to at least 5 decimal places, and those fractions of cents add up.

Also, I would generally choose to store the data in a single currency at any given time, rather than trying to store historical exchange rate values as well. While there's no reason you couldn't construct your class to store the historical value for each object and calculate the value in your currency of choice when you need to use it, it just seems like a lot of unnecessary overhead to do so.

It undoubtedly depends on your use case, though.

link|flag
2  
Rounding rules make this a bad choice. – S.Lott Sep 11 at 2:19
1  
How do you figure? In general you want to calculate your decimals out to as much precision as possible. You don't want to be arbitrarily rounding to a fixed precision too early in the process... – Gabriel Hurley Sep 11 at 2:58
Propagation of error (or en.wikipedia.org/wiki/Propagation_of_uncertainty/… ) is what makes it a bad idea to use floats. – voyager Sep 11 at 12:52
1  
That's a shaky argument. You're choosing to round off your errors to an arbitrary length by limiting yourself to the precision of your exchange rate or other factors... overall it depends what kind of system you're designing and what you want to do with the fractions of cents incurred. If they're going into my bank account, I'm not complaining. – Gabriel Hurley Sep 11 at 14:31
vote up 0 vote down

Use integers that represent cents.

link|flag
Thats what Decimal is for, it gives you a consistent decimal class that deals correctly with arbitrary length decimals. – voyager Sep 10 at 18:27
vote up 0 vote down

Just use decimal.

link|flag

Your Answer

Get an OpenID
or

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