Chile interest rate
Chile interest rate closed down 5 as of December 17, 2024 from 5.25 from the previous day, 5.75 last week and 11.25 last month.
Chile interest rate Analytics & Data
MacroVar Free Open Data enables you to Embed, Share and Download Chile interest rate historical data, charts and analysis in your website and with others.
Chile interest rate closing prices of the last 60 days are displayed below. Sign up free to download the full historical data series using MacroVar Web/Excel or API.
Embed Chile interest rate Chart or Data Table in your website or Share this chart and data table with your friends.
Chile interest rate Historical Data
Date |
Close |
2024-12-17 |
5 |
2024-10-17 |
5.25 |
2024-09-03 |
5.5 |
2024-08-31 |
5.75 |
2024-07-31 |
5.75 |
2024-06-18 |
5.75 |
2024-05-23 |
6 |
2024-04-02 |
6.5 |
2024-02-29 |
7.25 |
2024-01-31 |
7.25 |
2023-12-19 |
8.25 |
2023-11-30 |
9 |
2023-10-26 |
9 |
2023-09-05 |
9.5 |
2023-08-31 |
10.25 |
2023-07-28 |
10.25 |
2023-06-19 |
11.25 |
2023-05-12 |
11.25 |
2023-04-04 |
11.25 |
2023-03-31 |
11.25 |
2023-02-28 |
11.25 |
2023-01-26 |
11.25 |
2022-12-06 |
11.25 |
2022-11-30 |
11.25 |
2022-10-12 |
11.25 |
2022-09-06 |
10.75 |
2022-08-31 |
9.75 |
2022-07-13 |
9.75 |
2022-06-07 |
9 |
2022-05-04 |
8.25 |
2022-04-30 |
7 |
2022-03-29 |
7 |
2022-02-28 |
5.5 |
Share the specific page using the buttons below.
\n' +
'\n'+
'
';
$(".after-download-popup .embed-code .embed-type-chart .embed-code-copy textarea").val(codeChart);
var codeTable =
'\n' +
'\n'+
'
';
$(".after-download-popup .embed-code .embed-type-table .embed-code-copy textarea").val(codeTable);
},
error: function (request, status, error) {
//console.log(request.responseText + "error =" + error);
$(".after-download-popup .popup-body").html("");
var errorHtml = $("
").appendTo($(".after-download-popup .popup-body")).css('color','red').text("Invalid Wid");
},
complete: function(result) {
//open the popup
$(".popup-overlay.after-download-popup, .popup-content").addClass("active");
$(".after-download-popup").show();
}
});
});
//download image data
$("#chart-tabs-block a.download-image").click(function () {
var wid = "87672";
console.log("---Downloading data -image");
var apiUrl = "https://macrovar.com/wp-json/mesmerize-api/v1/market-data-wid";
$.ajax({
type: "POST",
url: apiUrl,
crossDomain: true,
data: {"wid":wid},
dataType: "json",
success: function (result) {
//get returned info
console.log(result);
var data = result['data'];
var variableDetail = result['variable-detail'];
//update the content of the popup that opens after download
//set the embed link title
$(".after-download-popup .embed-code-title").text(variableDetail['cnt'] + ' ' + variableDetail['indicator'] + ' ' + variableDetail['tp']);
//set the download data type in the success message
$(".after-download-popup .download-success-message .download-data-type").text("image");
//set the embed code to copy
var ifw = "800px", ifh = "420px";
var codeChart =
'\n' +
'\n'+
'
';
$(".after-download-popup .embed-code .embed-type-chart .embed-code-copy textarea").val(codeChart);
var codeTable =
'\n' +
'\n'+
'
';
$(".after-download-popup .embed-code .embed-type-table .embed-code-copy textarea").val(codeTable);
//create canvas
var chartContainer = $("
" ).appendTo( $("body") );
var canvas = $("#macrovar-chart");
//prepare data
var labels = [];
var dataValue = [];
data.forEach( (row, index) => {
labels[index] = row['date'];
dataValue[index] = row['value'];
});
var maxTicksLimit = data.length / 5;
var myChart = new Chart(canvas, {
type: 'line',
data: {
labels: labels,
datasets: [{
data: dataValue,
fill: false,
borderColor: 'rgb(45, 121, 222)',
tension: 0.1
}]
},
options: {
responsive: true,
scales: {
y: {
beginAtZero: false,
grid:{
display:false
}
},
x:{
ticks: {
maxTicksLimit: maxTicksLimit
}
}
},
maintainAspectRatio: false,
plugins: {
legend: {
display: false
},
subtitle: {
display: true,
align: 'center',
position: 'left',
text: variableDetail['var'],
}
},
animation: {
onComplete: function () {
// Get the chart's base64 image string
var a = document.createElement('a');
a.href = myChart.toBase64Image();
a.download = variableDetail['var']+'.png';
// Trigger the download
a.click();
//remove chart
chartContainer.remove();
},
}
},
plugins: [{
beforeDraw: function(chart) {
//draw background
var ctx = chart.ctx;
ctx.fillStyle = 'white';
ctx.fillRect(0, 0, chart.width, chart.height);
}
}]
});
},
error: function (request, status, error) {
console.log(request.responseText + "error =" + error);
$(".after-download-popup .popup-body").html("");
var errorHtml = $("
").appendTo($(".after-download-popup .popup-body")).css('color','red').text("Invalid Wid");
},
complete: function(result) {
//open the popup
$(".popup-overlay.after-download-popup, .popup-content").addClass("active");
}
});
});
//copy code to clipborad - in the popup
$(".after-download-popup .embed-code .embed-code-copy textarea").click(function(e){
e.preventDefault();
$(this).select();
document.execCommand('copy');
console.log("--code copied to clipboard");
});
});
function generateEmbedCode() {
var tabs = $('#chart-tabs-block'),
id = $('.select-embed li.active', tabs).data('id'),
code = '',
ifw = $('[name="share-width"]', tabs).val(),
ifh = $('[name="share-height"]', tabs).val(),
wid = "29983";
if (id && ifw && ifh) {
if (id == 'chart') {
code = '
source:
macrovar.com';
/*code =
'\n' +
'\n'+
'
';
*/
} else if (id =='data') {
//let data = $('#data table', tabs).html();
// data = data.replace(/[\t\n\r]|[\s]{2,}/gm, '');
//code = '
';
code =
'\n' +
'\n'+
'
';
} else if (id =='txt') {
code =
'\n' +
'\n'+
'
\n\n'+
'*** In your webpage place the following code to display the latest up to date value of this indicator. ***\n'+
'
';
}
$('.copycode textarea', tabs).val(code);
}
}
function previewEmbed(e) {
e.preventDefault();
var tabs = $('#chart-tabs-block'),
id = $('.select-embed li.active', tabs).data('id');
if (id == 'chart') {
window.open('https://macrovar.com/markets/Chile-interest-rate.png','_blank');
} else {
$('button#data-tab').click();
}
}
Chile interest rate Statistics
Chile interest rate Quantitative Analysis, Charts & Factors
Chile interest rate Historical Data
The
MacroVar database offers
free access to historical data for the Chile interest rate, dating back to 1950. This extensive dataset is
readily available through MacroVar versatile platforms, including a user-friendly web interface, a robust Python API, and convenient Excel integration. By leveraging these tools, users can efficiently retrieve and analyze
decades of Chile interest rate data, supporting a wide range of research, financial analysis, and decision-making processes.
What is the Chile interest rate
The Chilean interest rate refers to the rate at which the Central Bank of Chile lends money to commercial banks in the country. This rate is a key tool used by the Central Bank to control inflation and stimulate economic growth. A higher interest rate makes borrowing more expensive, which can help to slow down inflation by reducing consumer spending. On the other hand, a lower interest rate makes borrowing cheaper, which can encourage businesses and consumers to spend and invest, thus stimulating economic activity. The Chilean interest rate is closely monitored by investors and economists as it can have a significant impact on the country's economy.