{"id":399,"date":"2025-03-03T09:36:53","date_gmt":"2025-03-03T08:36:53","guid":{"rendered":"https:\/\/tendance-finance.fr\/?page_id=399"},"modified":"2025-03-03T09:57:19","modified_gmt":"2025-03-03T08:57:19","slug":"portefeuille-100-nasdaq-100-tr","status":"publish","type":"page","link":"https:\/\/tendance-finance.fr\/index.php\/portefeuille-100-nasdaq-100-tr\/","title":{"rendered":"Portefeuille 100% Nasdaq 100-TR"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Pr\u00e9sentation du portefeuille<\/h2>\n\n\n\n<p>Nous allons \u00e9tudier ici un portefeuille investi \u00e0 100% sur l&rsquo;indice Nasdaq 100-TR. Nous choisissons de r\u00e9investir les dividendes vers\u00e9s dans l&rsquo;indice, d&rsquo;o\u00f9 le choix de l&rsquo;indice TR (Total Return). Dans le choix d&rsquo;un ETF repr\u00e9sentatif de cet indice, on obtient l&rsquo;\u00e9quivalent de cette indice en choisissant un ETF \u00ab\u00a0Accumulation\u00a0\u00bb. Il n&rsquo;y a pas de distribution de dividendes mais un r\u00e9investissement des dividendes avec un tel ETF.<\/p>\n\n\n\n<p>Ce portefeuille est simple, il peut \u00eatre r\u00e9pliqu\u00e9 avec un seul ETF puisqu&rsquo;il est investi \u00e0 100% sur l&rsquo;indice Nasdaq 100-TR.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Evolution de l&rsquo;indice<\/h2>\n\n\n\n<p>Sur le graphique suivant, nous pouvons voir l&rsquo;\u00e9volution de l&rsquo;indice sur les derni\u00e8res ann\u00e9es:<\/p>\n\n\n\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/echarts\/dist\/echarts.min.js\"><\/script>\n\n\n\n<div class=\"flex flex-col items-center mt-5\">\n    <!-- Boutons de s\u00e9lection de dur\u00e9e -->\n    <div class=\"flex space-x-3 mb-5\">\n        <button id=\"5ans\" class=\"px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600 focus:outline-none\" checked onclick=\"updateChart(5)\">5 ans<\/button>\n        <button class=\"px-4 py-2 bg-gray-300 text-gray-700 rounded-lg hover:bg-blue-600 hover:text-white focus:outline-none\" onclick=\"updateChart(10)\">10 ans<\/button>\n        <button class=\"px-4 py-2 bg-gray-300 text-gray-700 rounded-lg hover:bg-blue-600 hover:text-white focus:outline-none\" onclick=\"updateChart(20)\">20 ans<\/button>\n    <\/div>\n<\/div>\n\n\n\n<div style=\"display: flex; justify-content: center; margin-top: 20px;\">\n    <div id=\"chart\" style=\"width: 100%; max-width: 800px; height: 500px;\"><\/div>\n<\/div>\n\n\n\n<script>\n    var myChart = echarts.init(document.getElementById('chart'));\n\n    function calculateCAGR(values, years) {\n        if (values.length < 2) return null; \/\/ Pas assez de donn\u00e9es\n\n        let V_i = values[0]; \/\/ Premi\u00e8re valeur\n        let V_f = values[values.length - 1]; \/\/ Derni\u00e8re valeur\n\n        let CAGR = ((V_f \/ V_i) ** (1 \/ years) - 1) * 100; \/\/ En pourcentage\n        return CAGR.toFixed(2); \/\/ Arrondi \u00e0 2 d\u00e9cimales\n    }\n\n    function calculateMaxDrawdown(values) {\n        if (values.length < 2) return null; \/\/ Pas assez de donn\u00e9es\n\n        let peak = values[0];\n        let drawdown = 0;\n\n        for (let i = 1; i < values.length; i++) {\n            if (values[i] > peak) {\n                peak = values[i];\n            }\n            let currentDrawdown = -((peak - values[i]) \/ peak) * 100;\n            if (currentDrawdown < drawdown) {\n                drawdown = currentDrawdown;\n            }\n        }\n        return drawdown.toFixed(2); \/\/ Arrondi \u00e0 2 d\u00e9cimales\n    }\n\n    function calculateValeurFinale(values){\n        let V_i = values[0]; \/\/ Premi\u00e8re valeur\n        let V_f = values[values.length - 1]; \/\/ Derni\u00e8re valeur\n        let ValeurFinale = 10000 * V_f \/ V_i\n        return ValeurFinale.toFixed(0);\n    }\n\n    function formatWithThousandSeparator(number) {\n        return number.toString().replace(\/\\B(?=(\\d{3})+(?!\\d))\/g, \".\");\n    }\n\n\n    function updateChart(years) {\n        var jsonFile = \"NASDAQ100_EUR_A_\" + years + \"Y.json\";\n\n        fetch(\"https:\/\/tendance-finance.fr\/json\/\" + jsonFile)\n            .then(response => response.json())\n            .then(data => {\n                let cagrValue = calculateCAGR(data.close, years);\n                document.getElementById(\"cagr\").innerText = (cagrValue ? cagrValue + \" %\" : \"NA\");\n\n                let maxDrawdownValue = calculateMaxDrawdown(data.close);\n                document.getElementById(\"recul-max\").innerText = (maxDrawdownValue ? maxDrawdownValue + \" %\" : \"NA\");\n                \n                document.getElementById(\"indice\").innerText = \"NASDAQ 100-TR\"\n                document.getElementById(\"years\").innerText = years + \" ans\";\n                document.getElementById(\"initial\").innerText = \"10.000 \u20ac\";\n                \n                let valeurfinale = calculateValeurFinale(data.close);\n                document.getElementById(\"final\").innerText = (valeurfinale ? formatWithThousandSeparator(valeurfinale) + \" \u20ac\": \"NA\");\n                \n                let performance = (data.close[data.close.length - 1] \/ data.close[0]).toFixed(2)\n                document.getElementById(\"performance\").innerText = \"x \" + (performance ? performance : \"NA\");\n\n                var options = {\n                    title: { text: `\u00c9volution du NASDAQ 100-TR (${years} ans) en EUR` },\n                    tooltip: { trigger: 'axis' },\n                    xAxis: { type: 'category', data: data.index },\n                    yAxis: { type: 'value' },\n                    series: [{ name: \"Nasdaq 100 TR (\u20ac):\", type: 'line', data: data.close }]\n                };\n                myChart.setOption(options);\n            })\n            .catch(error => console.error(\"Erreur lors du chargement des donn\u00e9es :\", error));\n    }\n\n    window.onload = function() {\n        updateChart(5);\n        \/\/document.getElementById(\"5ans\").click();\n    };\n<\/script>\n\n\n\n<p>Ce graphique est mis \u00e0 jour quotidiennement.<\/p>\n\n\n\n<div class=\"cell-container\">\n    <div class=\"cell\">\n        <p id=\"indice\" style=\"margin: 0; font-size: 30px;\">NASDAQ 100-TR<\/p>\n    <\/div>\n\n    <div class=\"cell\">Dur\u00e9e<br>\n        <p id=\"years\" style=\"margin: 0; font-size: 30px;\">&#8211; ans<\/p>\n    <\/div>\n\n    <div class=\"cell\">Initial<br>\n        <p id=\"initial\" style=\"margin: 0; font-size: 30px;\">10.000 $<\/p>\n    <\/div>\n\n    <div class=\"cell\">Final<br>\n        <p id=\"final\" style=\"margin: 0; font-size: 30px;\">&#8211; $<\/p>\n    <\/div>\n<\/div>\n\n\n\n<p>Nous voyons la progression d&rsquo;un capital de 10.000\u20ac plac\u00e9 sur cet indice.<\/p>\n\n\n\n<br>\n<div class=\"cell-container\">\n    <div class=\"cell\">Performance<br>\n        <p id=\"performance\" style=\"margin: 0; font-size: 30px;\">x &#8211;<\/p>\n    <\/div>\n\n    <div class=\"cell\">Rdt annuel<br>\n        <p id=\"cagr\" style=\"margin: 0; font-size: 30px;\">&#8211; %<\/p>\n    <\/div>\n\n    <div class=\"cell\">Recul maximum<br>\n        <p id=\"recul-max\" style=\"margin: 0; font-size: 30px;\">&#8211; %<\/p>\n    <\/div>\n<\/div>\n\n\n\n<p>La <strong>performance <\/strong>correspond au facteur multiplicateur du montant initialement plac\u00e9 sur l&rsquo;indice.<\/p>\n\n\n\n<p>Le <strong>rendement annuel<\/strong> indique le rendement qu&rsquo;il faut avoir chaque ann\u00e9e pour obtenir la m\u00eame performance que l&rsquo;indice.<\/p>\n\n\n\n<p>Le <strong>recul maximum<\/strong> nous indique quelle aurait \u00e9t\u00e9 la baisse relative maximum avec un tel placement sur la p\u00e9riode \u00e9tudi\u00e9e.<\/p>\n\n\n\n<style>\n    .cell-container {\n        display: flex;\n        flex-wrap: wrap;  \/* Permet aux \u00e9l\u00e9ments de passer \u00e0 la ligne si l'espace est insuffisant *\/\n        justify-content: center; \/* Centre les cellules *\/\n        gap: 10px;\n        max-width: 800px;\n        margin: auto;\n    }\n    \n    .cell {\n        flex: 1;\n        min-width: 150px; \/* Taille minimale d'une cellule avant de passer en colonne *\/\n        background-color: #ADD8E6;\n        text-align: center;\n        padding: 20px;\n        font-size: 20px;\n        font-weight: bold;\n        border-radius: 3px;\n        transition: background-color 0.1s;\n    }\n    \n    .cell:hover {\n        background-color: #5FAACF;\n    }\n    <\/style>\n","protected":false},"excerpt":{"rendered":"<p>Pr\u00e9sentation du portefeuille Nous allons \u00e9tudier ici un portefeuille investi \u00e0 100% sur l&rsquo;indice Nasdaq 100-TR. Nous choisissons de r\u00e9investir<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-399","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Portefeuille 100% Nasdaq 100-TR - Tendance Finance<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tendance-finance.fr\/index.php\/portefeuille-100-nasdaq-100-tr\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Portefeuille 100% Nasdaq 100-TR - Tendance Finance\" \/>\n<meta property=\"og:description\" content=\"Pr\u00e9sentation du portefeuille Nous allons \u00e9tudier ici un portefeuille investi \u00e0 100% sur l&rsquo;indice Nasdaq 100-TR. Nous choisissons de r\u00e9investir\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tendance-finance.fr\/index.php\/portefeuille-100-nasdaq-100-tr\/\" \/>\n<meta property=\"og:site_name\" content=\"Tendance Finance\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-03T08:57:19+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/tendance-finance.fr\\\/index.php\\\/portefeuille-100-nasdaq-100-tr\\\/\",\"url\":\"https:\\\/\\\/tendance-finance.fr\\\/index.php\\\/portefeuille-100-nasdaq-100-tr\\\/\",\"name\":\"Portefeuille 100% Nasdaq 100-TR - Tendance Finance\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/tendance-finance.fr\\\/#website\"},\"datePublished\":\"2025-03-03T08:36:53+00:00\",\"dateModified\":\"2025-03-03T08:57:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/tendance-finance.fr\\\/index.php\\\/portefeuille-100-nasdaq-100-tr\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/tendance-finance.fr\\\/index.php\\\/portefeuille-100-nasdaq-100-tr\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/tendance-finance.fr\\\/index.php\\\/portefeuille-100-nasdaq-100-tr\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/tendance-finance.fr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Portefeuille 100% Nasdaq 100-TR\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/tendance-finance.fr\\\/#website\",\"url\":\"https:\\\/\\\/tendance-finance.fr\\\/\",\"name\":\"Tendance Finance\",\"description\":\"Etude d&#039;investissements financiers\",\"publisher\":{\"@id\":\"https:\\\/\\\/tendance-finance.fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/tendance-finance.fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/tendance-finance.fr\\\/#organization\",\"name\":\"Tendance Finance\",\"url\":\"https:\\\/\\\/tendance-finance.fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/tendance-finance.fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/vanfleteren.fr\\\/finance\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/cropped-9554f423-8f40-4be2-be21-bd90b253e944-1.webp\",\"contentUrl\":\"https:\\\/\\\/vanfleteren.fr\\\/finance\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/cropped-9554f423-8f40-4be2-be21-bd90b253e944-1.webp\",\"width\":512,\"height\":512,\"caption\":\"Tendance Finance\"},\"image\":{\"@id\":\"https:\\\/\\\/tendance-finance.fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Portefeuille 100% Nasdaq 100-TR - Tendance Finance","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tendance-finance.fr\/index.php\/portefeuille-100-nasdaq-100-tr\/","og_locale":"fr_FR","og_type":"article","og_title":"Portefeuille 100% Nasdaq 100-TR - Tendance Finance","og_description":"Pr\u00e9sentation du portefeuille Nous allons \u00e9tudier ici un portefeuille investi \u00e0 100% sur l&rsquo;indice Nasdaq 100-TR. Nous choisissons de r\u00e9investir","og_url":"https:\/\/tendance-finance.fr\/index.php\/portefeuille-100-nasdaq-100-tr\/","og_site_name":"Tendance Finance","article_modified_time":"2025-03-03T08:57:19+00:00","twitter_card":"summary_large_image","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tendance-finance.fr\/index.php\/portefeuille-100-nasdaq-100-tr\/","url":"https:\/\/tendance-finance.fr\/index.php\/portefeuille-100-nasdaq-100-tr\/","name":"Portefeuille 100% Nasdaq 100-TR - Tendance Finance","isPartOf":{"@id":"https:\/\/tendance-finance.fr\/#website"},"datePublished":"2025-03-03T08:36:53+00:00","dateModified":"2025-03-03T08:57:19+00:00","breadcrumb":{"@id":"https:\/\/tendance-finance.fr\/index.php\/portefeuille-100-nasdaq-100-tr\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tendance-finance.fr\/index.php\/portefeuille-100-nasdaq-100-tr\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tendance-finance.fr\/index.php\/portefeuille-100-nasdaq-100-tr\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/tendance-finance.fr\/"},{"@type":"ListItem","position":2,"name":"Portefeuille 100% Nasdaq 100-TR"}]},{"@type":"WebSite","@id":"https:\/\/tendance-finance.fr\/#website","url":"https:\/\/tendance-finance.fr\/","name":"Tendance Finance","description":"Etude d&#039;investissements financiers","publisher":{"@id":"https:\/\/tendance-finance.fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tendance-finance.fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/tendance-finance.fr\/#organization","name":"Tendance Finance","url":"https:\/\/tendance-finance.fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/tendance-finance.fr\/#\/schema\/logo\/image\/","url":"https:\/\/vanfleteren.fr\/finance\/blog\/wp-content\/uploads\/2025\/01\/cropped-9554f423-8f40-4be2-be21-bd90b253e944-1.webp","contentUrl":"https:\/\/vanfleteren.fr\/finance\/blog\/wp-content\/uploads\/2025\/01\/cropped-9554f423-8f40-4be2-be21-bd90b253e944-1.webp","width":512,"height":512,"caption":"Tendance Finance"},"image":{"@id":"https:\/\/tendance-finance.fr\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/tendance-finance.fr\/index.php\/wp-json\/wp\/v2\/pages\/399","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tendance-finance.fr\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/tendance-finance.fr\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/tendance-finance.fr\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tendance-finance.fr\/index.php\/wp-json\/wp\/v2\/comments?post=399"}],"version-history":[{"count":10,"href":"https:\/\/tendance-finance.fr\/index.php\/wp-json\/wp\/v2\/pages\/399\/revisions"}],"predecessor-version":[{"id":413,"href":"https:\/\/tendance-finance.fr\/index.php\/wp-json\/wp\/v2\/pages\/399\/revisions\/413"}],"wp:attachment":[{"href":"https:\/\/tendance-finance.fr\/index.php\/wp-json\/wp\/v2\/media?parent=399"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}