Instantly convert between US Dollars (USD) and Argentine Pesos (ARS) using the unofficial "Blue" market rate.
Sell USD (Get Pesos)
Buy USD (Pay Pesos)
Enter the current "Cuevas" rate.
Used to calculate the "Brecha" (gap).
Understanding the Argentina Blue Dollar
If you are traveling to Argentina or conducting business there, understanding the Dólar Blue (Blue Dollar) is crucial for your finances. The Blue Dollar is the informal or parallel exchange rate for the US Dollar in Argentina.
Due to strict currency controls imposed by the government, the official exchange rate is artificially low compared to the market demand. This disparity creates a parallel market where the US Dollar trades at a significantly higher value in Argentine Pesos (ARS).
Why use this calculator?
This Argentina Blue Rate Calculator helps you estimate:
Actual Purchasing Power: How many pesos you will actually receive in cash exchanges (cuevas).
The "Brecha": The percentage gap between the official bank rate and the street value of the dollar.
Budgeting: Accurate cost estimation for travelers paying in cash versus credit cards.
Official vs. Blue Rate: The "Brecha"
The difference between the official rate and the Blue rate is known locally as the brecha. When the brecha is high (e.g., above 30-40%), travelers gain a massive financial advantage by using cash exchanged at the Blue rate rather than using foreign credit cards charged at the official rate (though the MEP rate for credit cards has mitigated this recently).
How to Exchange Money at the Blue Rate
Exchanging money at the Blue rate is technically illegal but widely tolerated and practiced openly. You can exchange money at:
Cuevas: Informal exchange houses, often hidden in back offices or jewelry stores.
Arbolitos: Street exchangers who shout "Cambio, Cambio" on pedestrian streets like Florida Street in Buenos Aires.
Western Union: Often offers a rate very close to the Blue rate (sometimes even higher), allowing you to send money to yourself and pick it up in pesos.
Does the Blue Rate change daily?
Yes, the Dólar Blue is extremely volatile and changes hourly based on inflation, political news, and market sentiment. Always check the rate on the day of your exchange.
Are $100 bills worth more?
Yes. In the Argentine Blue market, pristine $100 USD bills (the "blue strip" new design) often command a higher exchange rate than smaller denominations ($20s, $50s) or old/damaged bills.
function calculateBlueRate() {
// Get input values
var amount = parseFloat(document.getElementById('amount').value);
var direction = document.getElementById('exchangeDirection').value;
var blueRate = parseFloat(document.getElementById('blueRate').value);
var officialRate = parseFloat(document.getElementById('officialRate').value);
// Validation
if (isNaN(amount) || amount <= 0) {
alert("Please enter a valid positive amount to exchange.");
return;
}
if (isNaN(blueRate) || blueRate <= 0) {
alert("Please enter a valid Blue Rate.");
return;
}
if (isNaN(officialRate) || officialRate <= 0) {
alert("Please enter a valid Official Rate.");
return;
}
var resultHTML = "";
var convertedAmount = 0;
var officialConverted = 0;
var difference = 0;
var currencyFrom = "";
var currencyTo = "";
// Determine calculation based on direction
if (direction === "usd_to_ars") {
// Selling USD to get ARS
convertedAmount = amount * blueRate;
officialConverted = amount * officialRate;
difference = convertedAmount – officialConverted;
currencyFrom = "USD";
currencyTo = "ARS";
resultHTML += '
Amount in USD:$' + formatMoney(amount, 'USD') + '
';
resultHTML += '
Blue Rate Applied:$' + formatMoney(blueRate, 'ARS') + ' / USD
';
resultHTML += '
You Get (Blue Rate):$' + formatMoney(convertedAmount, 'ARS') + '
';
// Comparison logic
resultHTML += '
If exchanged at Official Rate:$' + formatMoney(officialConverted, 'ARS') + '