Chart für Teva Pharmaceutical Industries Ltd ADR Faktor 4,00x Long Open End (VON) - VP4GN7
Einstellungen▼
Ansicht für diesen Chart speichern
Ansicht für alle Charts speichern
Ansicht für diesen Chart löschen
Ansicht für alle Charts löschen
Chart abonnieren
Wichtige Hinweise für den Anleger
Tägliche 4-fache Partizipation in beide Richtungen an der Kursentwicklung von Teva Pharmaceutical ADR. Die Strategie des Zertifikates ist Long ausgerichtet.
Basiswertinformationen auf Teva Pharmaceutical Industries Ltd ADR
Das Zertifikat bildet die tägliche Entwicklung des Basiswertes gehebelt um den Faktor 4 ab.
Dabei wird über einen virtuellen Index zum einen in eine entsprechende Long-Position des Basiswertes, zum anderen in eine Zinsposition investiert. In diese werden unter anderem der Geldmarktzinssatz sowie die Managementgebühren eingerechnet.
Aufgrund des Hebelfaktors sind starke Kursverlust bis hin zu einem Totalverlust (KO-Ereignis) möglich.
Aktueller Kurs zu VP4GN7
Börsenplatz
Börse Frankfurt
Letzter Kurs
EUR
Performance
0,00 %
Kurszeit
22.04.21
Eröffnung
0,830000EUR
Tageshoch
0,940000EUR
Tagestief
0,830000EUR
Vortageskurs
0,900000EUR
52-Wochen Hoch
7,47EUR
52-Wochen Tief
0,610000EUR
Stammdaten VP4GN7
Name
Faktor Zertifikat auf Teva Pharmaceutical Industries Ltd ADR 4,00x Long Open End (VON)
Ihre Suche liefert kein Ergebnis. Bitte passen Sie Ihre Suche an.
'); } } else { $('#pmSearchResult').off(); $('#pmSearchResult').css('display', 'none'); } } else { $('#pmSearchResult').off(); $('#pmSearchResult').css('display', 'none'); } } ); }; $('#pmSearchIcon').click(function(e) { if(!$('#pmSearchIcon #popup-menu').is(e.target) && $('#pmSearchIcon #popup-menu').has(e.target).length === 0 ) { $('#pmSearchIcon #popup-menu').css('display', 'block'); } }); $(document).mouseup(function (e) { var container = $("#pmSearchIcon"); if (!container.is(e.target) && container.has(e.target).length === 0) { $('#pmSearchIcon #popup-menu').hide(); } }); $('#pmSearchIcon #popup-menu a').click(function(e) { e.preventDefault(); /*alert($(this).attr('rel'));*/ }); $('#pm_basiswert').on('input', function(e) { seachInstrument($(this).val(),false); }); $('#pmSearchResult').on('click', 'a', function(e) { e.preventDefault(); $('.simulator_wrapper .result .simulator').data("productprice",$(this).data('productprice')); $('.simulator_wrapper .result .simulator').data("underlyingprice",$(this).data('underlyingprice')); $('.simulator_wrapper .result .simulator').data("factor",$(this).data('factor')); $('.simulator_wrapper .result .simulator').data("simulation",$(this).data('simulation')); $('.simulator_wrapper .result .simulator').data("product",$(this).data('product')); if ( ( $(this).data('producttype') != undefined ) ) { $('.simulator_wrapper .result .simulator').data("producttype",$(this).data('producttype')); productType = $(this).data("producttype"); } $('#pm_basiswert').val($(this).data('name')); $('#pmSearchResult').css('display', 'none'); that.trigger("calc"); that.trigger("draw"); $('#pmSearchIcon #popup-menu').hide(); $('#pmSearchResult').hide(); product = $(this).data('product'); if ( window.location.hash.substring(1) != product ) { _gaq.push(['_trackEvent', productType + '_Simulator', 'selectsearch', product]); window.location.hash = $(this).data('isin'); } }); $('#pmSearchIcon #popup-menu a').click(function(e) { $('.simulator_wrapper .result .simulator').data("productprice",$(this).data('productprice')); $('.simulator_wrapper .result .simulator').data("underlyingprice",$(this).data('underlyingprice')); $('.simulator_wrapper .result .simulator').data("factor",$(this).data('factor')); $('.simulator_wrapper .result .simulator').data("simulation",$(this).data('simulation')); $('.simulator_wrapper .result .simulator').data("product",$(this).data('product')); if ( ( $(this).data('producttype') != undefined ) ) { $('.simulator_wrapper .result .simulator').data("producttype",$(this).data('producttype')); productType = $(this).data("producttype"); } $('#pm_basiswert').val($(this).data('name')); $('#pmSearchResult').css('display', 'none'); that.trigger("calc"); that.trigger("draw"); $('#pmSearchIcon #popup-menu').hide(); $('#pmSearchResult').hide(); product = $(this).data('product'); _gaq.push(['_trackEvent', productType + '_Simulator', 'select_top', product]); window.location.hash = $(this).data('isin'); }); var applyNewValue = function(form, value) { if(Math.abs(value) <= 50) { form.data("value", value); var parent = form.parents("div.simulator"); var newSimulation = []; parent.find(".percentForm").each(function () { newSimulation.push($(this).data("value")); }); parent.data("simulation", newSimulation.join(",")); parent.trigger("calc"); parent.trigger("draw"); } }; $(this).on("click", ".percentForm button", function(e) { var element = $(this).find("span"); var form = element.parents(".percentForm"); var increment = element.hasClass("glyphicon-plus") ? 1 : -1; var value = form.data("value"); value = value + increment; _gaq.push(['_trackEvent', productType + '_Simulator', 'buttonclick', increment]); applyNewValue(form, value); }); $(this).on("blur", ".percentForm input", function(e) { $(this).trigger({type: 'keydown', key: "Enter"}); }); $(this).on("keydown", ".percentForm input", function(e) { var validKeys = ["ArrowLeft","ArrowRight","ArrowUp","ArrowDown","Backspace","Delete",",","Enter","Escape","1","2","3","4","5","6","7","8","9","0","F5","-","Tab"]; if(validKeys.indexOf(e.key) != -1) { var form = $(this).parents(".percentForm"); var value = $(this).val(); var rawValue = value; var key = e.key; value = parseFloat(value.replace(/[\s%+.]/g, '').replace(/,/,'.')); switch(key) { case ",": if(rawValue.indexOf(",") != -1) { return false; } break; case "-": if(rawValue.indexOf("-") != -1) { return false; } else if(e.currentTarget.selectionStart !== 0) { return false; } break; case "Enter": /* enter */ applyNewValue(form, value); break; } return true; } e.preventDefault(); return false; }); $(this).on("calc", function() { var data = $(this).data(); var factor = data['factor']; var productPrice = data['productprice']; var underlyingPrice = data['underlyingprice']; var simulation = data['simulation'].split(','); var result = []; result.push({ day: 0, simulatedPerformance: null, underlyingPrice: underlyingPrice, underlyingPerformance: null, productPrice: productPrice, productPerformance: null }); var lastUnderlyingPrice = underlyingPrice; var lastProductPrice = productPrice; for(var day = 1; day < 11; day ++) { var simulatedPerformanceRaw = simulation[day - 1]; var simulatedPerformance = 1+(simulatedPerformanceRaw / 100); var simulatedFactorPerformance = 1+(simulatedPerformanceRaw / 100 * factor); var _underlyingPrice = lastUnderlyingPrice * simulatedPerformance; var _underlyingPerformance = (100 / underlyingPrice * (lastUnderlyingPrice * simulatedPerformance)) - 100; var _productPrice = lastProductPrice * simulatedFactorPerformance; var _productPerformance = (100 / productPrice * (lastProductPrice * simulatedFactorPerformance)) - 100; if(_productPrice < 0.0001) { _productPrice = null; _productPerformance = null; } lastUnderlyingPrice = lastUnderlyingPrice * simulatedPerformance; lastProductPrice = lastProductPrice * simulatedFactorPerformance; if(lastProductPrice < 0.0001) { lastProductPrice = null; } result.push({ day: day, simulatedPerformance: simulatedPerformanceRaw, underlyingPrice: _underlyingPrice, underlyingPerformance: _underlyingPerformance, productPrice: _productPrice, productPerformance: _productPerformance }); } $(this).data("result", result); }); var formatQuote = function(value, decimals, forcesign) { if(value == null) { return '-'; } return $.numberFormat(value, decimals, ',', '.', forcesign ? true : false); }; var formatPercent = function(value) { if(value == null) { return '-'; } var result = $.numberFormat(value, 2, ',', '.', true) + " %"; if(value > 0) { result = "" + result + ""; } else if(value < 0) { result = "" + result + ""; } return result; }; var formatPercentForm = function(value) { var result; var resultClass; if(value == null) { return ""; } result = formatQuote(value, 2, true) + " %"; if(value > 0) { resultClass = "green"; } else if(value < 0) { resultClass = "red"; } result = ""; return result; }; $(this).on("draw", function() { $(".simulator_wrapper.start .resultText").animate({opacity: 1}, 300); $(".simulator_wrapper.start input").animate({opacity: 1}, 300, function() { $(".simulator_wrapper").removeClass("start"); }); var data = $(this).data(); var result = data["result"]; var showunderlyingprice = data["showunderlyingprice"]; var table = $('
'); var _t = '
Tag
Simulation
'; if(showunderlyingprice) { _t += '
Kurs Basiswert
'; } _t += '
Perf. Basiswert
Kurs ' + productType + '
Perf. ' + productType + '
'; table.append($(_t)); for(var i in result) { var row = result[i]; var simulatedPerformance = formatPercentForm(row.simulatedPerformance); if(showunderlyingprice) { var underlyingPrice = formatQuote(row.underlyingPrice, 2); } var underlyingPerformance = formatPercent(row.underlyingPerformance); var productPrice = formatQuote(row.productPrice, 2); var productPerformance = formatPercent(row.productPerformance); _t = '