Ichimoku Cloud Indicator Calculator

Enter data points as "Open,High,Low,Close" for each period, separated by semicolons.
Example: 10,12,9,11; 11,13,10,12; ...
At least 52 periods are recommended for standard (9, 26, 52) settings to see a full cloud.

Ichimoku Cloud Calculation Results

Period Close Price Tenkan-sen Kijun-sen Senkou Span A Senkou Span B Chikou Span Cloud Direction

Senkou Span A Shift: ${senkouAShiftInput.value}

Calculated Ichimoku Values

${ichimokuResultsTbody.innerHTML}
Period Close Price Tenkan-sen Kijun-sen Senkou Span A Senkou Span B Chikou Span Cloud Direction
`; element.innerHTML = pdfContent; html2pdf().from(element).set({ margin: [10, 10, 10, 10], filename: 'Ichimoku_Cloud_Report.pdf', image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2, logging: true, dpi: 192, letterRendering: true }, jsPDF: { unit: 'mm', format: 'a4', orientation: 'landscape' } /* Landscape for wider tables */ }).save(); } // Attach event listeners if (calculateButton) { calculateButton.addEventListener('click', calculateIchimoku); } else { console.error("Calculate button not found."); } if (downloadPdfButton) { downloadPdfButton.addEventListener('click', downloadPDF); } else { console.error("Download PDF button not found."); } });
Scroll to Top