Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
got cut of from GPT-4 before.
  • Loading branch information
lightningRalf authored Mar 15, 2023
1 parent 04f54c6 commit 2919fd0
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,17 @@ document.addEventListener('DOMContentLoaded', () => {
tradesInput.appendChild(createRow());
});

tradesForm.addEventListener('submit', (event) =>
tradesForm.addEventListener('submit', (event) => {
event.preventDefault();

// Add your JavaScript code for calculations here

// Example:
// results.innerHTML = `
// <tr>
// <td>Ticker</td>
// <td>Adjusted Trading Size</td>
// </tr>
// `;
});
});

0 comments on commit 2919fd0

Please sign in to comment.