{"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":"%e0%a4%95%e0%a5%8d%e0%a4%b0%e0%a4%bf%e0%a4%aa%e0%a5%8d%e0%a4%9f%e0%a5%8b-%e0%a4%b2%e0%a4%be%e0%a4%ad-%e0%a4%95%e0%a5%88%e0%a4%b2%e0%a4%95%e0%a5%81%e0%a4%b2%e0%a5%87%e0%a4%9f%e0%a4%b0","status":"publish","type":"page","link":"https:\/\/www.ikryptoo.com\/hi\/%e0%a4%95%e0%a5%8d%e0%a4%b0%e0%a4%bf%e0%a4%aa%e0%a5%8d%e0%a4%9f%e0%a5%8b-%e0%a4%b2%e0%a4%be%e0%a4%ad-%e0%a4%95%e0%a5%88%e0%a4%b2%e0%a4%95%e0%a5%81%e0%a4%b2%e0%a5%87%e0%a4%9f%e0%a4%b0\/","title":{"rendered":"\u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b \u0932\u093e\u092d \u0915\u0948\u0932\u0915\u0941\u0932\u0947\u091f\u0930"},"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>\u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b \u092a\u094d\u0930\u0949\u092b\u093f\u091f \u0915\u0948\u0932\u0915\u0941\u0932\u0947\u091f\u0930 \ud83c\udf19 \u0921\u093e\u0930\u094d\u0915 \u092e\u094b\u0921 \u092c\u093f\u0917\u093f\u0928\u0930\u092a\u094d\u0930\u094b \u0932\u0940\u0935\u0930\u0947\u091c \ud83d\udcc8 DCA \u23f1 \u0932\u093f\u0915\u094d\u0935\u093f\u0921\u0947\u0936\u0928 \u26a0\ufe0f \u090f\u0902\u091f\u094d\u0930\u0940 \u092a\u094d\u0930\u093e\u0907\u0938 ($): \u0928\u093f\u0915\u093e\u0938 \u092e\u0942\u0932\u094d\u092f ($): \u0932\u0940\u0935\u0930\u0947\u091c: \u092a\u094b\u091c\u0940\u0936\u0928 \u0938\u093e\u0907\u091c\u093c ($): \u0932\u093e\u092d \u0915\u0940 \u0917\u0923\u0928\u093e \u0915\u0941\u0932 \u0928\u093f\u0935\u0947\u0936 ($): \u0916\u0930\u0940\u0926 \u092e\u0942\u0932\u094d\u092f (\u0915\u0949\u092e\u093e-\u0938\u0947\u092a\u0930\u0947\u091f\u0947\u0921): \u092e\u093e\u0924\u094d\u0930\u093e\u090f\u0901 (\u0915\u0949\u092e\u093e-\u0938\u0947\u092a\u0930\u0947\u091f\u0947\u0921): \u0914\u0938\u0924 \u092e\u0942\u0932\u094d\u092f \u0915\u0940 \u0917\u0923\u0928\u093e \u092a\u094d\u0930\u0935\u0947\u0936 \u092e\u0942\u0932\u094d\u092f ($): \u0932\u0940\u0935\u0930\u0947\u091c: \u092a\u094b\u091c\u0940\u0936\u0928 \u092a\u094d\u0930\u0915\u093e\u0930: \u0932\u094b\u0902\u0917\/\u0936\u0949\u0930\u094d\u091f \u0932\u093f\u0915\u094d\u0935\u093f\u0921\u0947\u0936\u0928 \u092e\u0942\u0932\u094d\u092f \u0915\u0940 \u0917\u0923\u0928\u093e \u0938\u0939\u0947\u091c\u0940 \u0917\u0908 \u091f\u094d\u0930\u0947\u0921\u094d\u0938<\/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\/hi\/\u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b-\u0932\u093e\u092d-\u0915\u0948\u0932\u0915\u0941\u0932\u0947\u091f\u0930\/\" \/>\n<meta property=\"og:locale\" content=\"hi_IN\" \/>\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\/hi\/\u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b-\u0932\u093e\u092d-\u0915\u0948\u0932\u0915\u0941\u0932\u0947\u091f\u0930\/\" \/>\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=\"\u0905\u0928\u0941\u092e\u093e\u0928\u093f\u0924 \u092a\u0922\u093c\u0928\u0947 \u0915\u093e \u0938\u092e\u092f\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 \u092e\u093f\u0928\u091f\" \/>\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\":\"hi-IN\",\"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\":\"hi-IN\"},{\"@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\":\"hi-IN\",\"@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":"\u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b \u092a\u094d\u0930\u0949\u092b\u093f\u091f \u0915\u0948\u0932\u0915\u0941\u0932\u0947\u091f\u0930 - iKryptoo :: \u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b \u0915\u0939\u093e\u0928\u093f\u092f\u093e\u0901, \u091f\u093f\u092a\u094d\u0938 \u0914\u0930 \u0930\u0923\u0928\u0940\u0924\u093f\u092f\u093e\u0901","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\/hi\/\u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b-\u0932\u093e\u092d-\u0915\u0948\u0932\u0915\u0941\u0932\u0947\u091f\u0930\/","og_locale":"hi_IN","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\/hi\/\u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b-\u0932\u093e\u092d-\u0915\u0948\u0932\u0915\u0941\u0932\u0947\u091f\u0930\/","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":{"\u0905\u0928\u0941\u092e\u093e\u0928\u093f\u0924 \u092a\u0922\u093c\u0928\u0947 \u0915\u093e \u0938\u092e\u092f":"1 \u092e\u093f\u0928\u091f"},"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":"\u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b \u092a\u094d\u0930\u0949\u092b\u093f\u091f \u0915\u0948\u0932\u0915\u0941\u0932\u0947\u091f\u0930 - iKryptoo :: \u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b \u0915\u0939\u093e\u0928\u093f\u092f\u093e\u0901, \u091f\u093f\u092a\u094d\u0938 \u0914\u0930 \u0930\u0923\u0928\u0940\u0924\u093f\u092f\u093e\u0901","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":"hi-IN","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 :: \u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b \u0915\u0939\u093e\u0928\u093f\u092f\u093e\u0901, \u091f\u093f\u092a\u094d\u0938 \u0914\u0930 \u0930\u0923\u0928\u0940\u0924\u093f\u092f\u093e\u0901","description":"iKryptoo \u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b\u0915\u0930\u0947\u0902\u0938\u0940 \u092a\u0930 \u0935\u093f\u0936\u0947\u0937\u091c\u094d\u091e \u0938\u0941\u091d\u093e\u0935, \u0930\u0923\u0928\u0940\u0924\u093f\u092f\u093e\u0901 \u0914\u0930 \u0928\u0935\u0940\u0928\u0924\u092e \u0905\u0902\u0924\u0930\u094d\u0926\u0943\u0937\u094d\u091f\u093f \u092a\u094d\u0930\u0926\u093e\u0928 \u0915\u0930\u0924\u093e \u0939\u0948\u0964 \u091a\u093e\u0939\u0947 \u0906\u092a \u090f\u0915 \u0928\u094c\u0938\u093f\u0916\u093f\u092f\u093e \u0939\u094b\u0902 \u092f\u093e \u0905\u0928\u0941\u092d\u0935\u0940 \u0935\u094d\u092f\u093e\u092a\u093e\u0930\u0940, \u0939\u092e \u0906\u092a\u0915\u094b \u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b \u0915\u0940 \u0932\u0917\u093e\u0924\u093e\u0930 \u092c\u0926\u0932\u0924\u0940 \u0926\u0941\u0928\u093f\u092f\u093e \u092e\u0947\u0902 \u092e\u093e\u0930\u094d\u0917\u0926\u0930\u094d\u0936\u0928 \u0915\u0930\u0928\u0947 \u0914\u0930 \u0938\u0942\u091a\u093f\u0924 \u0928\u093f\u0930\u094d\u0923\u092f \u0932\u0947\u0928\u0947 \u092e\u0947\u0902 \u092e\u0926\u0926 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092e\u0942\u0932\u094d\u092f\u0935\u093e\u0928 \u0938\u0932\u093e\u0939 \u0926\u0947\u0924\u0947 \u0939\u0948\u0902\u0964.","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":"hi-IN"},{"@type":"Organization","@id":"https:\/\/www.ikryptoo.com\/fr\/#organization","name":"iKryptoo :: \u0915\u094d\u0930\u093f\u092a\u094d\u091f\u094b \u0915\u0939\u093e\u0928\u093f\u092f\u093e\u0901, \u091f\u093f\u092a\u094d\u0938 \u0914\u0930 \u0930\u0923\u0928\u0940\u0924\u093f\u092f\u093e\u0901","url":"https:\/\/www.ikryptoo.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"hi-IN","@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\/hi\/wp-json\/wp\/v2\/pages\/251","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ikryptoo.com\/hi\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.ikryptoo.com\/hi\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.ikryptoo.com\/hi\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ikryptoo.com\/hi\/wp-json\/wp\/v2\/comments?post=251"}],"version-history":[{"count":3,"href":"https:\/\/www.ikryptoo.com\/hi\/wp-json\/wp\/v2\/pages\/251\/revisions"}],"predecessor-version":[{"id":255,"href":"https:\/\/www.ikryptoo.com\/hi\/wp-json\/wp\/v2\/pages\/251\/revisions\/255"}],"wp:attachment":[{"href":"https:\/\/www.ikryptoo.com\/hi\/wp-json\/wp\/v2\/media?parent=251"}],"curies":[{"name":"\u0921\u092c\u094d\u0932\u094d\u092f\u0942\u092a\u0940","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}