-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
35 lines (29 loc) · 1.13 KB
/
Copy pathIndex.html
File metadata and controls
35 lines (29 loc) · 1.13 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Options Strategy Analyzer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Options Strategy Analyzer</h1>
<div class="input-section">
<label for="ticker">Stock Ticker:</label>
<input type="text" id="ticker" name="ticker" placeholder="e.g., AAPL" required>
<label for="expiration">Expiration Date:</label>
<input type="date" id="expiration" name="expiration" required>
<label for="prediction">Price Prediction (at expiration):</label>
<input type="number" id="prediction" name="prediction" placeholder="e.g., 180.50" step="0.01" required>
<button onclick="analyzeStrategies()">Analyze Strategies</button>
</div>
<div class="results-section">
<h2>Potential Strategies</h2>
<div id="strategies-container">
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>