CAD to USD (Buying US Dollars)
USD to CAD (Selling US Dollars)
Enter the current posted rate (e.g., if 1 USD costs $1.36 CAD, enter 1.36)
Original Amount:–
Applied Rate:–
Converted Amount:–
Note: This calculator uses user-inputted rates. CIBC rates fluctuate dynamically based on market conditions and account type.
function updateLabels() {
var direction = document.getElementById('cibc_direction').value;
var label = document.getElementById('amount_label');
if (direction === 'cad_to_usd') {
label.innerText = 'Amount to Convert (CAD)';
} else {
label.innerText = 'Amount to Convert (USD)';
}
}
function calculateExchange() {
var amountInput = document.getElementById('cibc_amount');
var rateInput = document.getElementById('cibc_rate');
var direction = document.getElementById('cibc_direction').value;
var resultBox = document.getElementById('cibc_result');
var amount = parseFloat(amountInput.value);
var rate = parseFloat(rateInput.value);
// Validation
if (isNaN(amount) || amount <= 0) {
alert("Please enter a valid amount to convert.");
return;
}
if (isNaN(rate) || rate <= 0) {
alert("Please enter a valid exchange rate.");
return;
}
var convertedAmount = 0;
var originCurrency = "";
var targetCurrency = "";
// Logic: Rates are typically quoted as 1 USD = X CAD (e.g., 1.36)
if (direction === 'cad_to_usd') {
// Converting CAD to USD
// Formula: CAD / Rate = USD
convertedAmount = amount / rate;
originCurrency = "CAD";
targetCurrency = "USD";
} else {
// Converting USD to CAD
// Formula: USD * Rate = CAD
convertedAmount = amount * rate;
originCurrency = "USD";
targetCurrency = "CAD";
}
// Display Results
document.getElementById('res_orig_amount').innerText = formatMoney(amount, originCurrency);
document.getElementById('res_rate').innerText = "1 USD = " + rate.toFixed(4) + " CAD";
document.getElementById('res_final').innerText = formatMoney(convertedAmount, targetCurrency);
resultBox.style.display = 'block';
}
function formatMoney(value, currency) {
return value.toLocaleString('en-US', {
style: 'currency',
currency: currency,
minimumFractionDigits: 2,
maximumFractionDigits: 2
});
}
Understanding the CIBC US Exchange Rate
For Canadians who travel, invest, or do business across the border, understanding how the CIBC US exchange rate works is crucial for financial planning. Whether you are transferring funds between your Canadian and US domiciled accounts or purchasing US cash for a vacation, the rate you receive impacts the final cost of your transaction.
How CIBC Exchange Rates Are Determined
Like most major Canadian banks, CIBC sets its exchange rates based on the global foreign exchange market, adding a "spread" or margin to the mid-market rate. This spread covers the bank's operational costs and profit margins. It is important to note that the rate you see on Google or financial news sites (the mid-market rate) is rarely the rate available to retail customers.
The rate will generally differ depending on the transaction type:
Non-Cash Rate: Used for electronic transfers, wire transfers, and Global Money Transfers. This rate is typically more favorable than the cash rate.
Cash Rate: Used when purchasing physical banknotes at a branch. This rate usually includes a higher spread to account for the logistics of handling physical currency.
Using the Calculator
Our CIBC US Exchange Rate Calculator helps you estimate the conversion value of your funds. Here is how to use the inputs:
Conversion Direction: Select "CAD to USD" if you have Canadian dollars and want to buy US dollars. Select "USD to CAD" if you are converting US funds back into Canadian currency.
Exchange Rate (1 USD = X CAD): Input the current rate provided by CIBC. Banks typically quote the rate as the cost in CAD for one US dollar. For example, if the rate is 1.36, it costs $1.36 CAD to buy $1.00 USD.
Tips for Getting the Best Rate
To maximize your value when converting currency with CIBC:
Use CIBC Global Money Transfer (GMT): For sending money internationally, GMT often provides preferred rates compared to standard wire transfers.
US Cross-Border Banking: If you frequently transact in USD, consider opening a CIBC US Personal Account. This allows you to transfer money instantly between your Canadian and US accounts, often with better visibility on rates.
Watch the Market: Exchange rates fluctuate constantly. Converting larger sums when the CAD is stronger can result in significant savings.
Calculating the Conversion Manually
If you need to calculate the exchange without a tool, the math is straightforward assuming you have the rate (1 USD = X CAD):
Buying USD (CAD to USD): Divide your CAD amount by the rate. Example: $1,000 CAD / 1.35 = $740.74 USD
Buying CAD (USD to CAD): Multiply your USD amount by the rate. Example: $1,000 USD * 1.35 = $1,350.00 CAD