{"id":251,"date":"2025-12-28T16:02:45","date_gmt":"2025-12-28T16:02:45","guid":{"rendered":"https:\/\/www.ikryptoo.com\/?page_id=251"},"modified":"2025-12-28T16:10:02","modified_gmt":"2025-12-28T16:10:02","slug":"krypto-gewinn-rechner","status":"publish","type":"page","link":"https:\/\/www.ikryptoo.com\/de\/krypto-gewinn-rechner\/","title":{"rendered":"Krypto-Gewinn-Rechner"},"content":{"rendered":"\n<!-- Crypto Profit Calculator -->\n<div id=\"crypto-calculator\" class=\"calculator-container\">\n  <div class=\"header\">\n    <h2>Crypto Profit Calculator<\/h2>\n    <button id=\"theme-toggle\">\ud83c\udf19 Dark Mode<\/button>\n    <select id=\"mode-toggle\">\n      <option value=\"beginner\">Beginner<\/option>\n      <option value=\"pro\">Pro<\/option>\n    <\/select>\n  <\/div>\n\n  <!-- Tabs -->\n  <div class=\"tabs\">\n    <button class=\"tab-btn active\" data-tab=\"leverage\">Leverage \ud83d\udcc8<\/button>\n    <button class=\"tab-btn\" data-tab=\"dca\">DCA \u23f1<\/button>\n    <button class=\"tab-btn\" data-tab=\"liquidation\">Liquidation \u26a0\ufe0f<\/button>\n  <\/div>\n\n  <!-- Leverage Calculator -->\n  <div class=\"tab-content active\" id=\"leverage\">\n    <label>Entry Price ($): <input type=\"number\" id=\"entryPrice\" \/><\/label>\n    <label>Exit Price ($): <input type=\"number\" id=\"exitPrice\" \/><\/label>\n    <label>Leverage: <input type=\"number\" id=\"leverageInput\" value=\"30\" \/><\/label>\n    <label>Position Size ($): <input type=\"number\" id=\"positionSize\" \/><\/label>\n    <button id=\"calcLeverage\">Calculate Profit<\/button>\n    <div class=\"result\" id=\"leverageResult\"><\/div>\n  <\/div>\n\n  <!-- DCA Calculator -->\n  <div class=\"tab-content\" id=\"dca\">\n    <label>Total Investment ($): <input type=\"number\" id=\"dcaInvestment\" \/><\/label>\n    <label>Buy Prices (comma-separated): <input type=\"text\" id=\"dcaPrices\" placeholder=\"e.g. 50000,48000,47000\"\/><\/label>\n    <label>Quantities (comma-separated): <input type=\"text\" id=\"dcaQuantities\" placeholder=\"e.g. 0.1,0.2,0.3\"\/><\/label>\n    <button id=\"calcDCA\">Calculate Avg Price<\/button>\n    <div class=\"result\" id=\"dcaResult\"><\/div>\n  <\/div>\n\n  <!-- Liquidation Calculator -->\n  <div class=\"tab-content\" id=\"liquidation\">\n    <label>Entry Price ($): <input type=\"number\" id=\"liqEntryPrice\" \/><\/label>\n    <label>Leverage: <input type=\"number\" id=\"liqLeverage\" value=\"30\" \/><\/label>\n    <label>Position Type:\n      <select id=\"positionType\">\n        <option value=\"long\">Long<\/option>\n        <option value=\"short\">Short<\/option>\n      <\/select>\n    <\/label>\n    <button id=\"calcLiq\">Calculate Liquidation Price<\/button>\n    <div class=\"result\" id=\"liqResult\"><\/div>\n  <\/div>\n\n  <!-- Chart Preview -->\n  <div id=\"chartPreview\">\n    <canvas id=\"cryptoChart\"><\/canvas>\n  <\/div>\n\n  <!-- Saved Trades -->\n  <div id=\"savedTrades\">\n    <h3>Saved Trades<\/h3>\n    <ul id=\"tradeList\"><\/ul>\n  <\/div>\n<\/div>\n\n<!-- Styles -->\n<style>\n.calculator-container {\n  max-width: 700px;\n  margin: 20px auto;\n  font-family: 'Arial', sans-serif;\n  background: #f0f2f5;\n  border-radius: 12px;\n  padding: 20px;\n  box-shadow: 0 6px 15px rgba(0,0,0,0.1);\n  transition: background 0.3s, color 0.3s;\n}\n.calculator-container.dark {\n  background: #1e1e2f;\n  color: #fff;\n}\n.header {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  margin-bottom: 15px;\n}\n.tabs {\n  display: flex;\n  margin-bottom: 15px;\n}\n.tab-btn {\n  flex: 1;\n  padding: 10px;\n  border: none;\n  cursor: pointer;\n  background: #ddd;\n  margin-right: 5px;\n  border-radius: 8px;\n  transition: background 0.3s;\n}\n.tab-btn.active { background: #4285f4; color: #fff; }\n.tab-content { display: none; }\n.tab-content.active { display: block; }\nlabel { display: block; margin-bottom: 10px; }\ninput, select { width: 100%; padding: 8px; margin-top: 5px; border-radius: 6px; border: 1px solid #ccc; }\nbutton { margin-top: 10px; padding: 10px 15px; cursor: pointer; border-radius: 6px; border: none; background: #4285f4; color: #fff; }\n.result { margin-top: 15px; font-weight: bold; }\n#chartPreview { margin-top: 25px; }\n#savedTrades { margin-top: 25px; }\n#tradeList li { margin-bottom: 5px; background: #ddd; padding: 5px 10px; border-radius: 5px; }\n.calculator-container.dark #tradeList li { background: #333; }\n<\/style>\n\n<!-- Scripts -->\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/chart.js\"><\/script>\n<script>\ndocument.addEventListener('DOMContentLoaded', function() {\n  \/\/ Theme toggle\n  const container = document.getElementById('crypto-calculator');\n  document.getElementById('theme-toggle').addEventListener('click', () => {\n    container.classList.toggle('dark');\n    document.getElementById('theme-toggle').innerText = container.classList.contains('dark') ? '\u2600\ufe0f Light Mode' : '\ud83c\udf19 Dark Mode';\n  });\n\n  \/\/ Tabs\n  const tabBtns = document.querySelectorAll('.tab-btn');\n  const tabContents = document.querySelectorAll('.tab-content');\n  tabBtns.forEach(btn => {\n    btn.addEventListener('click', () => {\n      tabBtns.forEach(b => b.classList.remove('active'));\n      btn.classList.add('active');\n      tabContents.forEach(tc => tc.classList.remove('active'));\n      document.getElementById(btn.dataset.tab).classList.add('active');\n    });\n  });\n\n  \/\/ Leverage Calculator\n  document.getElementById('calcLeverage').addEventListener('click', () => {\n    const entry = parseFloat(document.getElementById('entryPrice').value);\n    const exit = parseFloat(document.getElementById('exitPrice').value);\n    const leverage = parseFloat(document.getElementById('leverageInput').value);\n    const size = parseFloat(document.getElementById('positionSize').value);\n    if(entry && exit && leverage && size){\n      const profit = ((exit - entry) \/ entry) * leverage * size;\n      document.getElementById('leverageResult').innerText = 'Potential Profit: $' + profit.toFixed(2);\n      saveTrade('Leverage', profit);\n    }\n  });\n\n  \/\/ DCA Calculator\n  document.getElementById('calcDCA').addEventListener('click', () => {\n    const prices = document.getElementById('dcaPrices').value.split(',').map(Number);\n    const quantities = document.getElementById('dcaQuantities').value.split(',').map(Number);\n    if(prices.length !== quantities.length) return alert('Prices & Quantities count mismatch!');\n    let totalCost = 0, totalQty = 0;\n    for(let i=0; i<prices.length; i++){\n      totalCost += prices[i]*quantities[i];\n      totalQty += quantities[i];\n    }\n    const avgPrice = totalCost\/totalQty;\n    document.getElementById('dcaResult').innerText = 'Average DCA Price: $' + avgPrice.toFixed(2);\n    saveTrade('DCA', avgPrice);\n  });\n\n  \/\/ Liquidation Calculator (simplified for BTC\/USDT)\n  document.getElementById('calcLiq').addEventListener('click', () => {\n    const entry = parseFloat(document.getElementById('liqEntryPrice').value);\n    const leverage = parseFloat(document.getElementById('liqLeverage').value);\n    const type = document.getElementById('positionType').value;\n    if(entry && leverage){\n      let liqPrice;\n      if(type === 'long') liqPrice = entry - (entry \/ leverage);\n      else liqPrice = entry + (entry \/ leverage);\n      document.getElementById('liqResult').innerText = 'Liquidation Price: $' + liqPrice.toFixed(2);\n      saveTrade('Liquidation', liqPrice);\n    }\n  });\n\n  \/\/ Save trades in LocalStorage\n  function saveTrade(type, value){\n    let trades = JSON.parse(localStorage.getItem('cryptoTrades')) || [];\n    trades.push({type, value, time: new Date().toLocaleString()});\n    localStorage.setItem('cryptoTrades', JSON.stringify(trades));\n    renderTrades();\n  }\n\n  function renderTrades(){\n    const tradeList = document.getElementById('tradeList');\n    tradeList.innerHTML = '';\n    let trades = JSON.parse(localStorage.getItem('cryptoTrades')) || [];\n    trades.slice(-10).forEach(t => {\n      const li = document.createElement('li');\n      li.textContent = `[${t.time}] ${t.type}: $${t.value.toFixed(2)}`;\n      tradeList.appendChild(li);\n    });\n  }\n  renderTrades();\n\n  \/\/ Chart preview using CoinGecko API\n  const ctx = document.getElementById('cryptoChart').getContext('2d');\n  let chart = new Chart(ctx, {\n    type: 'line',\n    data: { labels: [], datasets: [{ label: 'BTC Price ($)', data: [], borderColor: '#4285f4', fill:false }] },\n    options: { responsive:true, plugins:{ legend:{display:true}}}\n  });\n\n  async function fetchPriceHistory(){\n    const res = await fetch('https:\/\/api.coingecko.com\/api\/v3\/coins\/bitcoin\/market_chart?vs_currency=usd&days=1&interval=hourly');\n    const data = await res.json();\n    const prices = data.prices.map(p=> ({t:new Date(p[0]).toLocaleTimeString(), y:p[1]}));\n    chart.data.labels = prices.map(p=>p.t);\n    chart.data.datasets[0].data = prices.map(p=>p.y);\n    chart.update();\n  }\n  fetchPriceHistory();\n});\n<\/script>\n\n","protected":false},"excerpt":{"rendered":"<p>Crypto Profit Calculator \ud83c\udf19 Dark Mode BeginnerPro Leverage \ud83d\udcc8 DCA \u23f1 Liquidation \u26a0\ufe0f Entry Price ($): Ausstiegskurs ($): Hebelwirkung: Positionsgr\u00f6\u00dfe ($): Gewinn berechnen Gesamtinvestition ($): Kaufkurse (kommagetrennt): Mengen (Komma-getrennt): Durchschnittspreis berechnen Einstiegskurs ($): Hebelwirkung: Positionsart: LongShort Liquidationspreis berechnen Gespeicherte Trades<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-251","page","type-page","status-publish"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Crypto Profit Calculator - iKryptoo :: Crypto Stories, Tips And Strategies<\/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:\/\/www.ikryptoo.com\/de\/krypto-gewinn-rechner\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Crypto Profit Calculator - iKryptoo :: Crypto Stories, Tips And Strategies\" \/>\n<meta property=\"og:description\" content=\"Crypto Profit Calculator \ud83c\udf19 Dark Mode BeginnerPro Leverage \ud83d\udcc8 DCA \u23f1 Liquidation \u26a0\ufe0f Entry Price ($): Exit Price ($): Leverage: Position Size ($): Calculate Profit Total Investment ($): Buy Prices (comma-separated): Quantities (comma-separated): Calculate Avg Price Entry Price ($): Leverage: Position Type: LongShort Calculate Liquidation Price Saved Trades\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ikryptoo.com\/de\/krypto-gewinn-rechner\/\" \/>\n<meta property=\"og:site_name\" content=\"iKryptoo :: Crypto Stories, Tips And Strategies\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-28T16:10:02+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"1\u00a0Minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ikryptoo.com\\\/crypto-profit-calculator\\\/\",\"url\":\"https:\\\/\\\/www.ikryptoo.com\\\/crypto-profit-calculator\\\/\",\"name\":\"Crypto Profit Calculator - iKryptoo :: Crypto Stories, Tips And Strategies\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ikryptoo.com\\\/fr\\\/#website\"},\"datePublished\":\"2025-12-28T16:02:45+00:00\",\"dateModified\":\"2025-12-28T16:10:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ikryptoo.com\\\/crypto-profit-calculator\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.ikryptoo.com\\\/crypto-profit-calculator\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ikryptoo.com\\\/crypto-profit-calculator\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ikryptoo.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Crypto Profit Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ikryptoo.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/www.ikryptoo.com\\\/fr\\\/\",\"name\":\"iKryptoo :: Crypto Stories, Tips And Strategies\",\"description\":\"iKryptoo provides expert tips, strategies, and the latest insights on cryptocurrencies. Whether you&#039;re a beginner or an experienced trader, we offer valuable advice to help you navigate the ever-changing world of crypto and make informed decisions.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ikryptoo.com\\\/fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.ikryptoo.com\\\/fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ikryptoo.com\\\/fr\\\/#organization\",\"name\":\"iKryptoo :: Crypto Stories, Tips And Strategies\",\"url\":\"https:\\\/\\\/www.ikryptoo.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/www.ikryptoo.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/ikryptoo.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/ikryptoo-favicon.png\",\"contentUrl\":\"https:\\\/\\\/ikryptoo.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/ikryptoo-favicon.png\",\"width\":512,\"height\":512,\"caption\":\"iKryptoo :: Crypto Stories, Tips And Strategies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.ikryptoo.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Krypto-Gewinn-Rechner - iKryptoo :: Krypto Geschichten, Tipps und Strategien","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:\/\/www.ikryptoo.com\/de\/krypto-gewinn-rechner\/","og_locale":"de_DE","og_type":"article","og_title":"Crypto Profit Calculator - iKryptoo :: Crypto Stories, Tips And Strategies","og_description":"Crypto Profit Calculator \ud83c\udf19 Dark Mode BeginnerPro Leverage \ud83d\udcc8 DCA \u23f1 Liquidation \u26a0\ufe0f Entry Price ($): Exit Price ($): Leverage: Position Size ($): Calculate Profit Total Investment ($): Buy Prices (comma-separated): Quantities (comma-separated): Calculate Avg Price Entry Price ($): Leverage: Position Type: LongShort Calculate Liquidation Price Saved Trades","og_url":"https:\/\/www.ikryptoo.com\/de\/krypto-gewinn-rechner\/","og_site_name":"iKryptoo :: Crypto Stories, Tips And Strategies","article_modified_time":"2025-12-28T16:10:02+00:00","twitter_card":"summary_large_image","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"1\u00a0Minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.ikryptoo.com\/crypto-profit-calculator\/","url":"https:\/\/www.ikryptoo.com\/crypto-profit-calculator\/","name":"Krypto-Gewinn-Rechner - iKryptoo :: Krypto Geschichten, Tipps und Strategien","isPartOf":{"@id":"https:\/\/www.ikryptoo.com\/fr\/#website"},"datePublished":"2025-12-28T16:02:45+00:00","dateModified":"2025-12-28T16:10:02+00:00","breadcrumb":{"@id":"https:\/\/www.ikryptoo.com\/crypto-profit-calculator\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ikryptoo.com\/crypto-profit-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.ikryptoo.com\/crypto-profit-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ikryptoo.com\/"},{"@type":"ListItem","position":2,"name":"Crypto Profit Calculator"}]},{"@type":"WebSite","@id":"https:\/\/www.ikryptoo.com\/fr\/#website","url":"https:\/\/www.ikryptoo.com\/fr\/","name":"iKryptoo :: Krypto Geschichten, Tipps und Strategien","description":"iKryptoo bietet Expertentipps, Strategien und die neuesten Erkenntnisse \u00fcber Kryptow\u00e4hrungen. Egal, ob Sie ein Anf\u00e4nger oder ein erfahrener H\u00e4ndler sind, wir bieten Ihnen wertvolle Ratschl\u00e4ge, die Ihnen helfen, sich in der sich st\u00e4ndig ver\u00e4ndernden Welt der Kryptow\u00e4hrungen zurechtzufinden und fundierte Entscheidungen zu treffen.","publisher":{"@id":"https:\/\/www.ikryptoo.com\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ikryptoo.com\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/www.ikryptoo.com\/fr\/#organization","name":"iKryptoo :: Krypto Geschichten, Tipps und Strategien","url":"https:\/\/www.ikryptoo.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/www.ikryptoo.com\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/ikryptoo.com\/wp-content\/uploads\/2024\/10\/ikryptoo-favicon.png","contentUrl":"https:\/\/ikryptoo.com\/wp-content\/uploads\/2024\/10\/ikryptoo-favicon.png","width":512,"height":512,"caption":"iKryptoo :: Crypto Stories, Tips And Strategies"},"image":{"@id":"https:\/\/www.ikryptoo.com\/fr\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.ikryptoo.com\/de\/wp-json\/wp\/v2\/pages\/251","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ikryptoo.com\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.ikryptoo.com\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.ikryptoo.com\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ikryptoo.com\/de\/wp-json\/wp\/v2\/comments?post=251"}],"version-history":[{"count":3,"href":"https:\/\/www.ikryptoo.com\/de\/wp-json\/wp\/v2\/pages\/251\/revisions"}],"predecessor-version":[{"id":255,"href":"https:\/\/www.ikryptoo.com\/de\/wp-json\/wp\/v2\/pages\/251\/revisions\/255"}],"wp:attachment":[{"href":"https:\/\/www.ikryptoo.com\/de\/wp-json\/wp\/v2\/media?parent=251"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}