🌐 Cross-Currency Swap Calculator
Disclaimer: This calculator provides estimates based on the inputs provided. It is not intended as financial advice. Please consult a financial advisor for personalized recommendations.
Disclaimer: This calculator provides estimates based on the inputs provided. It is not intended as financial advice. Please consult a financial advisor for personalized recommendations.
Domestic Interest: ${domesticInterest.toFixed(2)}
Foreign Interest: ${foreignInterest.toFixed(2)}
`; } function shareOnTwitter() { const url = encodeURIComponent(window.location.href); const text = encodeURIComponent("Check out this Cross-Currency Swap Calculator by @yashtips!"); window.open(`https://x.com/yashtips?text=${text}&url=${url}`, '_blank'); } function shareOnQuora() { const url = encodeURIComponent(window.location.href); window.open(`https://www.quora.com/profile/Yash-8638?share=${url}`, '_blank'); } function shareOnReddit() { const url = encodeURIComponent(window.location.href); const title = encodeURIComponent("Check out this Cross-Currency Swap Calculator!"); window.open(`https://www.reddit.com/submit?url=${url}&title=${title}`, '_blank'); } function shareOnInstagram() { alert("Share this tool on Instagram by copying the link!"); } function saveAsPDF() { const { jsPDF } = window.jspdf; const doc = new jsPDF(); const resultText = document.getElementById('result').innerText; doc.text(resultText, 10, 10); doc.save('Cross-Currency-Swap-Result.pdf'); } function visitSite() { window.open('https://financialdost.com', '_blank'); }