Tagged Questions
The currency tag has no wiki summary.
56
votes
4answers
24k views
Ruby on Rails: best method of handling currency / money
I'm in the process of learning Ruby on Rails and I've set myself the task of putting together a very basic shopping cart system. I have a table items that costs of a price column currently set to ...
55
votes
12answers
10k views
Programmatically access currency exchange rates
I'm setting up an online ordering system but I'm in Australia and for international customers I'd like to show prices in US dollars or Euros so they don't have to make the mental effort to convert ...
33
votes
24answers
12k views
Use Float or Decimal for Accounting Application Dollar Amount?
We are rewriting our legacy Accounting System in VB.NET and SQL Server. We brought in a new team of .NET/ SQL Programmers to do the rewrite. Most of the system is already completed with the Dollar ...
31
votes
8answers
12k views
What is the best data type to use for money in c#?
What is the best data type to use for money in c#?
29
votes
13answers
7k views
Representing Monetary Values in Java
I understand that BigDecimal is recommended best practice for representing monetary values in Java. What do you use? Is there a better library that you prefer to use instead?
28
votes
7answers
11k views
Currency formatting in Python
I am looking to format a number like 188518982.18 to £188,518,982.18 using Python.
How can I do this?
Cheers
27
votes
16answers
7k views
What to do with Java BigDecimal performance?
I write currency trading applications for living, so I have to work with monetary values (it's a shame that Java still doesn't have decimal float type and has nothing to support arbitrary-precision ...
25
votes
9answers
3k views
Money data type for .NET?
Looking for a good Money data type for .NET that supports currencies and exchange rates (with related behaviour & operations).
Note: I started searching for the source code seen in print in the ...
25
votes
9answers
10k views
Storing money in a decimal column - what precision and scale?
I'm using a decimal column to store money values on a database, and today I was wondering what precision and scale to use.
Since supposedly char columns of a fixed width are more efficient, I was ...
23
votes
6answers
4k views
Why not use Double or Float to represent currency?
So I've always been told NEVER to do this, and this time I pose the question to you: why? I'm sure there is a very good reason, I simply do not know what it is. :-P
14
votes
4answers
5k views
Should I use NSDecimalNumber to deal with money?
As I started coding my first app I used NSNumber for money values without thinking twice. Then I thought that maybe c types were enough to deal with my values. Yet, I was advised in the iPhone SDK ...
14
votes
15answers
7k views
Best way to store currency values in C++
I know that a float isn't appropriate to store currency values because rounding errors. If there a standard way to represent money in C++? I've looked in the boost library and found nothing about it. ...
11
votes
7answers
3k views
Displaying the Indian currency symbol on a website
This symbol for the rupee, the currency of India, was approved by the Union Cabinet on 15 July 2010.
How can I display it on a website?
11
votes
4answers
2k views
Using NSNumberFormatter to get a decimal value from an international currency string
It seems that the NSNumberFormatter can't parse Euro (and probably other) currency strings into a numerical type. Can someone please prove me wrong.
I'm attempting to use the following to get a ...
11
votes
5answers
304 views
Displaying currency in C#
I need to display data values in US currency format. Meaning 190.8 should display as $190.80. For some reason I cant figure out how to do this. Any advice?
10
votes
1answer
330 views
Is there a Money class for JavaScript?
Disclaimer: complete rewrite for clarity as of 10/14/2011
Given the number primitive in JavaScript is an IEEE 754 64-bit floating point (known in other languages as a double), and using floats to ...
10
votes
1answer
692 views
If dealing with money in a float is bad, then why does money_format() do it?
I've been waffling on how to deal with currency display and math in PHP, and for a long time have been storing it in MySQL using the DECIMAL type, and using money_format() to format it for display on ...
10
votes
5answers
13k views
Currency exchange rates for paypal
Does anyone know a way to get the currency exchange rates for paypal?
We have custom shopping cart and use Paypal (Website Payments Standard) to handle payments.
Our 'home' currency is Euro, but we ...
10
votes
4answers
2k views
Best Practice - Format Multiple Currencies
What is best practice for the scenario listed below?
We have an application which we would like to support multiple currencies. The software will respect the users locale and regional settings to ...
10
votes
5answers
3k views
What is the best way to store a money value in the database?
I need to store a couple of money related fields in the database but I'm not sure which data type to use between money and decimal.
10
votes
9answers
13k views
Java double comparison epsilon
I wrote a class that tests for equality, less than, and greater than with two doubles in Java. My general case is comparing price that can have an accuracy of a half cent. 59.005 compared to 59.395. ...
9
votes
3answers
686 views
Best practice to handle locales with currencies and language switches
I'm working on a multilanguage project with Zend Framework (German and English) where I have a small form to order a product. The user should be able to:
Change his prefered currency for the product ...
9
votes
2answers
144 views
Algorithm possible amounts (over)paid for a specific price, based on denominations
In a current project, people can order goods delivered to their door and choose 'pay on delivery' as a payment option. To make sure the delivery guy has enough change customers are asked to input the ...
9
votes
6answers
3k views
storing money amounts in mysql
I want to store 3.50 into a mysql table. I have a float that I store it in, but it stores as 3.5, not 3.50. How can I get it to have the trailing zero?
9
votes
7answers
1k views
Best practises for dealing with monetary amounts in C#
I have read a couple of articles about the perils of certain data types being used to store monetary amounts. Unfortunately, some of the concepts are not in my comfort zone.
Having read these ...
9
votes
4answers
2k views
Money Type
Does anyone know of an already implemented money type in the .net framework that supports i18n (currencies, formatting, etc)? I have been looking for a well implemented type and can't seem to find ...
9
votes
1answer
3k views
What is the best datatype for currencies in MySQL?
I want to store values in a bunch of currencies and I'm not too keen on the imprecise nature of floats. Being able to do math on them directly in queries is also a requirement.
Is Decimal the way to ...
8
votes
4answers
1k views
Find locale currency for iphone programmatically
I want to find out the currency locale on user's iphone programmatically. That means, if user is in US Store, the currency locale should be USD, for Australia, it should be AUD. My purpose of this ...
8
votes
5answers
1k views
Multi-Currency Best Practice & Implementation
I'm finding it difficult to find any discussion on best practices for dealing with multiple currencies. Can anyone provide some insight or links to help?
I understand there are a number of ways to do ...
8
votes
1answer
5k views
Localize Currency for iPhone
I would like my iPhone app to allow the input, display and storage of currency amounts using the appropriate symbol ($, €, ₤, ¥, etc) for the user.
Would NSNumberFormatter do everything I need? What ...
7
votes
3answers
98 views
Extract currency from formatted amount
I'm getting a formatted amount of money from a web service. It can be in different formats and using different currencies, e.g.
$ 1.10
€ 1,10
1,10 €
EUR 1.10 (perhaps, I'm not sure I'll actually ...
7
votes
2answers
591 views
Do minor currency units have a ISO standard?
ISO 4217 defines 3-letter currency symbols:
EUR
USD
LKR
GBP
Do currencies' minor units (cent, pence) have a ISO or similar standard, too, that defines codes for those sub-units like
ct
p
?
7
votes
2answers
519 views
Negative currency number XAML
I have a little problem with the current format of my negative currency number.
Here's a screenshot resuming my situation.
This is how I'm using the StringFormat in my binding. (BTW, I tried only ...
7
votes
7answers
3k views
Get the currency from current culture?
Is there a way to get current information dynamically from the apps culture settings? Basically if the user has set the culture to US I want to know the currency is dollars, or if they have it set to ...
7
votes
5answers
2k views
Handling international currency input in Ruby on Rails
I have an application that handles currency inputs. However, if you're in the US, you might enter a number as 12,345.67; in France, it might be 12.345,67.
Is there an easy way, in Rails, to adapt the ...
7
votes
2answers
9k views
How to format an int as currency in C#?
I want to format an int as a currency in C#, but with no fractions. For example, 100000 should be "$100,000", instead of "$100,000.00" (which 100000.ToString("C") gives).
I know I can do this with ...
6
votes
5answers
121 views
XML Schema How to Declare Price and Currency
I'm creating an XML schema that stores information about houses.
I want to store the price and the currency.
It makes sense in my mind to declare this by having the currency as an attribute of the ...
6
votes
5answers
2k views
iPhone: How to get local currency symbol (i.e. “$” unstead of “AU$”)
Here's a code of how I get currency symbol now:
NSLocale *lcl = [[[NSLocale alloc] initWithLocaleIdentifier:@"au_AU"] autorelease];
NSNumberFormatter *fmtr = [[[NSNumberFormatter alloc] init] ...
6
votes
1answer
398 views
Algorithm to determine exchange rate
Given a data set of various currency pairs, how do I efficiently compute the implied fx rate for a pair not supplied in the data set?
For example, say my database/table looks like this (this data is ...
6
votes
6answers
813 views
Should I do money calculations in Javascript or as an AJAX call?
I'm building a webapp using JQuery, Stripes, Spring and JPA (Hibernate).
I have a page that allows users to enter a number of order line items and each time onblur occurs in the price field, I have a ...
6
votes
2answers
8k views
How to parse a currency Amount (US or EU) to float value in Java
In Europe decimals are separated with ',' and we use optional '.' to separate thousands. I allow currency values with:
US-style 123,456.78 notation
European-style 123.456,78 notation
I use the ...
5
votes
2answers
82 views
Proper way to do rounding for currency conversion in Paypal?
I'm building an ecommerce site integrated with paypal.
We take multiple currencies, so I want to make sure that (for accounting reasons) i'm correctly performing any math for currency conversion.
...
5
votes
4answers
111 views
How to get over losing pennies all the time?
I will be working for a company where they are programming for Financial Institutions and I will be working with money a lot. Before that it wasn't a major concern for me because I've been doing small ...
5
votes
1answer
571 views
Jqgrid currency format
I have a jqgrid, its option :formatter => "currency"
It is converting number 5 as $5.00, but this is a credit amount so I need to display it as ($5.00) instead of $5.00.
Any recommendations what ...
5
votes
1answer
225 views
Are currency formatting functions actually useful?
Many languages, such as .NET languages and Java come with a currency formatting facility built-in. What they do is format a number using a culture-specific number format and add the culture's currency ...
5
votes
4answers
1k views
javascript correctly rounding up to two decimals, impossible?
In php, we have number_format(). Passing it a value such as:
number_format(3.00 * 0.175, 2);
returns 0.53, which is what I would expect.
However, in JavaScript using toFixed()
var num = 3.00 * ...
5
votes
2answers
3k views
Objective-C: How to format string as $ Price
Is their a built-in way of formatting string as $ price, e.g. 12345.45 converted to $12,345.45?
5
votes
4answers
2k views
rails currency gem or plugin
I'm shopping for a gem or plugin to help me convert between currencies and handle day to day exchange rate fluctuation.
I've found the gem currency: http://currency.rubyforge.org/
And a few other ...
5
votes
4answers
2k views
How do I override Currency symbols in Java?
I'm trying to print prices in Turkish Liras (ISO 4217 currency code TRY) with Java.
When I do
Currency curr = Currency.getInstance("TRY");
Locale trLocale = new Locale("tr", "TR");
...
5
votes
2answers
2k views
Proper currency format when not displaying the native currency of a culture
What is the proper way to format currency if you are formatting a currency that is not the native currency of the current culture?
For example, if I am formatting US Dollars for a fr-FR culture do I ...