Bot Prompt

{ const botCommand = document.getElementById("botPrompt").value; if (botCommand.startsWith("get ")) { const ticker = botCommand.substring(4); document.getElementById("ticker").value = ticker; getRealTimePrice(); } else { alert("Unrecognized command"); } }