Vietnam 10-Year Bond Yield closed down 2.82 as of November 21, 2024 from 2.82 from the previous day, 2.86 last week and 2.8 last month.
Vietnam 10-Year Bond Yield Analytics & Data
MacroVar Free Open Data enables you to Embed, Share and Download Vietnam 10-Year Bond Yield historical data, charts and analysis in your website and with others.
We Need Your Support!
Backlinks from other websites are the lifeblood of our site and a primary source of new traffic.
If you use our chart images on your site or blog, we ask that you provide attribution via a link back to this page. We have provided a few examples below that you can copy and paste to your site:
Link Type
HTML Code (Click to Copy)
Vietnam 10-Year Bond Yield - Chart
Vietnam 10-Year Bond Yield - Table
Your data export is now complete. Please check your download folder.
Vietnam 10-Year Bond Yield 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 Vietnam 10-Year Bond Yield Chart or Data Table in your website or Share this chart and data table with your friends.
Vietnam 10-Year Bond Yield Historical Data
Date
Close
2024-11-21
2.821
2024-11-20
2.817
2024-11-19
2.859
2024-11-18
2.859
2024-11-15
2.859
2024-11-14
2.86
2024-11-13
2.851
2024-11-12
2.848
2024-11-11
2.851
2024-11-08
2.843
2024-11-07
2.852
2024-11-06
2.825
2024-11-05
2.827
2024-11-04
2.819
2024-11-01
2.816
2024-10-31
2.798
2024-10-30
2.792
2024-10-29
2.792
2024-10-28
2.789
2024-10-25
2.796
2024-10-24
2.798
2024-10-23
2.799
2024-10-22
2.786
2024-10-21
2.766
2024-10-18
2.758
2024-10-17
2.756
2024-10-16
2.753
2024-10-15
2.759
2024-10-14
2.76
2024-10-11
2.757
2024-10-10
2.744
2024-10-09
2.759
2024-10-08
2.759
2024-10-07
2.762
2024-10-04
2.768
2024-10-03
2.763
2024-10-02
2.764
2024-10-01
2.764
2024-09-30
2.768
2024-09-27
2.75
2024-09-26
2.759
2024-09-25
2.767
2024-09-24
2.76
2024-09-23
2.767
2024-09-20
2.771
2024-09-19
2.786
2024-09-18
2.801
2024-09-17
2.783
2024-09-16
2.799
2024-09-13
2.802
2024-09-12
2.801
2024-09-11
2.809
2024-09-10
2.808
2024-09-09
2.808
2024-09-06
2.827
2024-09-05
2.836
2024-09-04
2.826
2024-08-30
2.83
2024-08-29
2.823
2024-08-28
2.829
Get notified instantly when MacroVar new signals are available for Vietnam 10-Year Bond Yield.
Create your free account
Embed the latest Vietnam 10-Year Bond Yield Chart, Data Table or text to your website by clicking the 3 options 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 = "83923";
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 = "37109";
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 = '
'+$.trim(data)+'
';
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/Vietnam-10-Year-Bond-Yield.png','_blank');
} else {
$('button#data-tab').click();
}
}
The MacroVar database offers free access to historical data for the Vietnam 10-Year Bond Yield, 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 Vietnam 10-Year Bond Yield data, supporting a wide range of research, financial analysis, and decision-making processes.
What is the Vietnam 10-Year Bond Yield
The Vietnam 10-Year Bond Yield refers to the interest rate that investors can expect to earn on a 10-year government bond issued by the Vietnamese government. This yield is important to investors as it provides an indication of the risk and return associated with investing in Vietnamese government debt. A higher bond yield typically indicates higher perceived risk and therefore a higher potential return for investors. On the other hand, a lower bond yield may indicate lower risk but also a lower potential return. Monitoring the Vietnam 10-Year Bond Yield can help investors make informed decisions about their investment portfolios and assess the overall economic health and stability of Vietnam.
Welcome to MacroVar the financial analytics platform designed to help you identify trading and investment opportunities using data driven models. MacroVar uses statistical multi-factor models to analyze financial markets to generate automated signals for short-term trading and long-term investing. MacroVar models and the data analysed are transparent for anyone to explore.
Get Unlimited access to our database for Free by inviting your friends to MacroVar
Help your friends make the right business & financial decisions using free MacroVar analytics. Click here to invite them and get upgraded for free.