AI-Powered Trading Journal & Emotion Tracker

Log your trading activity and emotions to gain insight into patterns that affect your decision-making.

Asset: ${asset}

Position: ${position}

Entry Price: $${entryPrice.toFixed(2)}

Exit Price: $${exitPrice.toFixed(2)}

Profit/Loss: $${profitLoss}

Emotion During Trade: ${emotion}

AI Insight: ${emotionalInsights[emotion]}

Notes: ${notes || "(None)"}

`; document.getElementById("journalOutput").innerHTML = outputHTML; document.getElementById("journalOutput").dataset.pdfContent = ` Trade Date: ${tradeDate} Asset: ${asset} Position: ${position} Entry Price: $${entryPrice.toFixed(2)} Exit Price: $${exitPrice.toFixed(2)} Profit/Loss: $${profitLoss} Emotion: ${emotion} Insight: ${emotionalInsights[emotion]} Notes: ${notes || "(None)"} `.trim(); document.getElementById("downloadPDFButton").style.display = "inline-block"; document.getElementById("journalForm").reset(); }
Scroll to Top