-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (57 loc) · 1.82 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/png" sizes="32x32" href="favicon.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trading Size Calculator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="logo-container">
<img src="favicon.png" alt="Logo" class="logo">
</div>
<h1>Trading Size Calculator</h1>
<div class="toggle-container">
<input type="checkbox" id="darkModeToggle" class="toggle">
<label for="darkModeToggle" class="toggle-label"></label>
</div>
<div class="trading-stack-container">
<label for="tradingStack" style="margin-right: 10px;">Trading Stack:</label><input type="number" id="tradingStack" class="trading-stack-input" placeholder="Enter your trading stack" step="0.01" required>
</div>
<div class="tables-container">
<table id="inputTable" class="data-table">
<tr>
<th>Ticker</th>
<th>Entry</th>
<th>TP</th>
<th>SL</th>
<th>Win Probability</th>
<th></th>
</tr>
<tr>
<td><input type="text" class="ticker"></td>
<td><input type="number" class="entry"></td>
<td><input type="number" class="tp"></td>
<td><input type="number" class="sl"></td>
<td><input type="number" class="winProbability"></td>
<td><button class="deleteRowBtn">x</button></td>
</tr>
</table>
</div>
<div class="button-container">
<button id="addRow" class="button" style="margin-right: 20px;">Add Row</button>
<button id="calculate" class="button">Calculate</button>
</div>
<div class="tables-container">
<table id="resultsTable" class="data-table">
<tr>
<th>Ticker</th>
<th>RR</th>
<th>Adjusted Trading Size</th>
</tr>
</table>
</div>
<script src="script.js"></script>
</body>
</html>