Chile central bank balance sheet
Chile central bank balance sheet closed down 40821 as of December 31, 2024 from 41973 from the previous day, 38652 last week and 58920 last month.
Chile central bank balance sheet Analytics & Data
MacroVar Free Open Data enables you to Embed, Share and Download Chile central bank balance sheet historical data, charts and analysis in your website and with others.
Chile central bank balance sheet 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 central bank balance sheet Chart or Data Table in your website or Share this chart and data table with your friends.
Chile central bank balance sheet Historical Data
Date |
Close |
2024-12-31 |
40821 |
2024-11-30 |
41973 |
2024-10-31 |
40639 |
2024-09-30 |
39048 |
2024-08-31 |
38876 |
2024-07-31 |
38652 |
2024-06-30 |
40700 |
2024-05-31 |
46201 |
2024-04-30 |
45246 |
2024-03-31 |
47500 |
2024-02-29 |
51087 |
2024-01-31 |
54458 |
2023-12-31 |
57641 |
2023-11-30 |
56753 |
2023-10-31 |
61162 |
2023-09-30 |
65170 |
2023-08-31 |
62798 |
2023-07-31 |
66713 |
2023-06-30 |
59760 |
2023-05-31 |
59785 |
2023-04-30 |
58920 |
2023-03-31 |
56800 |
2023-02-28 |
59094 |
2023-01-31 |
57446 |
2022-12-31 |
55705 |
2022-11-30 |
58401 |
2022-10-31 |
60535 |
2022-09-30 |
56492 |
2022-08-31 |
56407 |
2022-07-31 |
62729 |
2022-06-30 |
64758 |
2022-05-31 |
60797 |
2022-04-30 |
62825 |
2022-03-31 |
57331 |
2022-02-28 |
65135 |
2022-01-31 |
60565 |
2021-12-31 |
64297 |
2021-11-30 |
64905 |
2021-10-31 |
64783 |
2021-09-30 |
62858 |
2021-08-31 |
63472 |
2021-07-31 |
62009 |
2021-06-30 |
64058 |
2021-05-31 |
63685 |
2021-04-30 |
55973 |
2021-03-31 |
50114 |
2021-02-28 |
50282 |
2021-01-31 |
50874 |
2020-12-31 |
51308 |
2020-11-30 |
48821 |
2020-10-31 |
49249 |
2020-09-30 |
48731 |
2020-08-31 |
47407 |
2020-07-31 |
41393 |
2020-06-30 |
37143 |
2020-05-31 |
40733 |
2020-04-30 |
30719 |
2020-03-31 |
22893 |
2020-02-29 |
26742 |
2020-01-31 |
25981 |
Get notified instantly when MacroVar new signals are available for
Chile central bank balance sheet.
Create your free account
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 = "87649";
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 = "29960";
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-central-bank-balance-sheet.png','_blank');
} else {
$('button#data-tab').click();
}
}
Chile central bank balance sheet Statistics
Chile central bank balance sheet Quantitative Analysis, Charts & Factors
Chile central bank balance sheet Historical Data
The
MacroVar database offers
free access to historical data for the Chile central bank balance sheet, 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 central bank balance sheet data, supporting a wide range of research, financial analysis, and decision-making processes.
What is the Chile central bank balance sheet
The Chile central bank balance sheet provides a snapshot of the financial position of the central bank at a given point in time. It includes assets, liabilities, and capital accounts. Assets typically include foreign reserves, government securities, and loans to financial institutions. Liabilities consist of currency in circulation, deposits from commercial banks, and other liabilities. The balance sheet reflects the central bank's ability to conduct monetary policy by influencing the money supply and managing inflation. Changes in the balance sheet can indicate shifts in monetary policy or economic conditions. Monitoring the central bank's balance sheet is important for policymakers, economists, and investors to understand the health and stability of the economy.