FX Swap Point Calculator

Calculated Swap Points: ${swapPointsPipsEl.textContent}

Calculated Forward Rate (All-In): ${forwardRateEl.textContent}

${calculationSummaryEl.textContent}

`; pdfContainer.querySelectorAll('.fxsp-positive').forEach(el => el.style.color = '#27ae60'); pdfContainer.querySelectorAll('.fxsp-negative').forEach(el => el.style.color = '#c0392b'); const opt = { margin: 15, filename: `FX_Swap_Points_Report_${pair.replace('/', '-')}.pdf`, image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2, useCORS: true, letterRendering: true }, jsPDF: { unit: 'mm', format: 'a4', orientation: 'portrait' } }; if (typeof html2pdf !== 'undefined') { html2pdf().from(pdfContainer).set(opt).save(); } else { alert('Error: PDF generation library (html2pdf.js) is not loaded.'); } }); });
Scroll to Top