Produktbeschreibung Infineon Technologies AG Faktor 3,00x Long Open End (SG)
Die Wertentwicklung des Hebelprodukts orientiert sich an der Kursentwicklung des Basiswertes, die dem Anleger sowohl bei steigenden als auch bei fallenden Kursen zu 300,00% angerechnet wird.
Das Hebelprodukt kann durch den Emittenten vorzeitig gekündigt werden.
Aufgrund des Hebelfaktors sind starke Kursverlust bis hin zu einem Totalverlust (KO-Ereignis) möglich.
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(); }); $('#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 ) { 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'); 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("img"); var form = element.parents(".percentForm"); var increment = element.hasClass("perfPlus") ? 1 : -1; var value = form.data("value"); value = value + increment; applyNewValue(form, value); }).on("blur", ".percentForm input", function(e) { $(this).trigger({type: 'keydown', key: "Enter"}); }).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 = '