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.
Moneyobject would need to save the historical value and current value. – voyager Sep 10 at 18:13